From: Martin Kronbichler Date: Thu, 30 Mar 2017 13:32:44 +0000 (+0200) Subject: Fix compilation with 64 bit indices. X-Git-Tag: v9.0.0-rc1~1767^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1a5173550a7bba793b49dbe7b10f8877b5c130a4;p=dealii.git Fix compilation with 64 bit indices. --- diff --git a/source/grid/grid_tools.cc b/source/grid/grid_tools.cc index 2e5ca8b0a7..772948dbea 100644 --- a/source/grid/grid_tools.cc +++ b/source/grid/grid_tools.cc @@ -2256,8 +2256,8 @@ next_cell: // Duplicate the coarse cell reordoring // as done in p4est - std::vector coarse_cell_to_p4est_tree_permutation; - std::vector p4est_tree_to_coarse_cell_permutation; + std::vector coarse_cell_to_p4est_tree_permutation; + std::vector p4est_tree_to_coarse_cell_permutation; DynamicSparsityPattern cell_connectivity; GridTools::get_vertex_connectivity_of_cells_on_level (triangulation, 0, cell_connectivity);