From a8bfd8885d9cc755fe4da578ccfb74401be27380 Mon Sep 17 00:00:00 2001 From: Timo Heister Date: Mon, 5 Oct 2015 08:41:57 -0400 Subject: [PATCH] fix tests/mpi/tria_ghost_owners --- tests/mpi/tria_ghost_owners_01.cc | 2 +- tests/mpi/tria_ghost_owners_02.cc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/mpi/tria_ghost_owners_01.cc b/tests/mpi/tria_ghost_owners_01.cc index c75ba10df5..73464c24fe 100644 --- a/tests/mpi/tria_ghost_owners_01.cc +++ b/tests/mpi/tria_ghost_owners_01.cc @@ -103,7 +103,7 @@ void test() bool is_subset = std::includes(level_ghost_owners.begin(), level_ghost_owners.end(), ghost_owners.begin(), ghost_owners.end()); Assert(is_subset, ExcInternalError()); - Vector indicators (tr.dealii::Triangulation::n_active_cells()); + Vector indicators (tr.n_active_cells()); std::set neighbors; { for (typename Triangulation::active_cell_iterator diff --git a/tests/mpi/tria_ghost_owners_02.cc b/tests/mpi/tria_ghost_owners_02.cc index 1a854984de..23d0fa438c 100644 --- a/tests/mpi/tria_ghost_owners_02.cc +++ b/tests/mpi/tria_ghost_owners_02.cc @@ -96,7 +96,7 @@ void test() bool is_subset = std::includes(level_ghost_owners.begin(), level_ghost_owners.end(), ghost_owners.begin(), ghost_owners.end()); Assert(is_subset, ExcInternalError()); - Vector indicators (tr.dealii::Triangulation::n_active_cells()); + Vector indicators (tr.n_active_cells()); std::set neighbors; { for (typename Triangulation::active_cell_iterator -- 2.39.5