From 1d85bd2b3dc9bc28b4428d6e477c3df0494c3488 Mon Sep 17 00:00:00 2001 From: bangerth Date: Mon, 2 Sep 2013 23:03:44 +0000 Subject: [PATCH] Fix a couple of apparently wrong uses of types::global_dof_index -- we will never have more than 4B coarse mesh cells. (Famous last words...) git-svn-id: https://svn.dealii.org/trunk@30563 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/include/deal.II/distributed/tria.h | 4 ++-- deal.II/source/distributed/tria.cc | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/deal.II/include/deal.II/distributed/tria.h b/deal.II/include/deal.II/distributed/tria.h index d17c8c082d..6275739a61 100644 --- a/deal.II/include/deal.II/distributed/tria.h +++ b/deal.II/include/deal.II/distributed/tria.h @@ -970,8 +970,8 @@ namespace parallel * these variables at a * couple places anyway. */ - 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; /** * dummy settings diff --git a/deal.II/source/distributed/tria.cc b/deal.II/source/distributed/tria.cc index 3613f5b7ca..d4b8767c96 100644 --- a/deal.II/source/distributed/tria.cc +++ b/deal.II/source/distributed/tria.cc @@ -3185,7 +3185,7 @@ namespace parallel template - const std::vector & + const std::vector & Triangulation::get_p4est_tree_to_coarse_cell_permutation() const { return p4est_tree_to_coarse_cell_permutation; -- 2.39.5