#include <algorithm>
#include <numeric>
#include <iostream>
+#include <utility>
DEAL_II_NAMESPACE_OPEN
for (unsigned int i=0; i<temp_copy_indices.size(); ++i)
if (temp_copy_indices[i] != numbers::invalid_unsigned_int)
copy_indices[selected_block][level][counter++] =
- std::make_pair<unsigned int,unsigned int> (temp_copy_indices[i], i);
+ std::pair<unsigned int, unsigned int> (temp_copy_indices[i], i);
Assert (counter == n_active_dofs, ExcInternalError());
}
}
for (unsigned int i=0; i<temp_copy_indices[block].size(); ++i)
if (temp_copy_indices[block][i] != numbers::invalid_unsigned_int)
copy_indices[block][level][counter++] =
- std::make_pair<unsigned int,unsigned int>
+ std::pair<unsigned int, unsigned int>
(temp_copy_indices[block][i], i);
Assert (counter == n_active_dofs, ExcInternalError());
}
for (unsigned int i=0; i<temp_copy_indices.size(); ++i)
if (temp_copy_indices[i] != numbers::invalid_unsigned_int)
copy_to_and_from_indices[level][counter++] =
- std::make_pair<unsigned int,unsigned int> (temp_copy_indices[i], i);
+ std::pair<unsigned int, unsigned int> (temp_copy_indices[i], i);
Assert (counter == n_active_dofs, ExcInternalError());
}
}
for (unsigned int i=0; i<temp_copy_indices.size(); ++i)
if (temp_copy_indices[i] != numbers::invalid_unsigned_int)
copy_indices[level][counter++] =
- std::make_pair<unsigned int,unsigned int> (temp_copy_indices[i], i);
+ std::pair<unsigned int, unsigned int> (temp_copy_indices[i], i);
Assert (counter == n_active_dofs, ExcInternalError());
}
}