From a1d090aab39005eec2a5f74c6cc719cefc15c750 Mon Sep 17 00:00:00 2001 From: Marc Fehling Date: Wed, 7 Jul 2021 00:09:22 -0600 Subject: [PATCH] tests: simplex/step-67: add mapping for non-p4est case --- tests/simplex/step-67.cc | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/tests/simplex/step-67.cc b/tests/simplex/step-67.cc index d0f59b7f03..912b01b910 100644 --- a/tests/simplex/step-67.cc +++ b/tests/simplex/step-67.cc @@ -1901,15 +1901,19 @@ namespace Euler_DG #ifdef DEAL_II_WITH_P4EST # ifdef HEX parallel::distributed::Triangulation triangulation; - MappingQGeneric mapping; # else parallel::fullydistributed::Triangulation triangulation; - MappingFE mapping; # endif #else Triangulation triangulation; #endif +#ifdef HEX + MappingQGeneric mapping; +#else + MappingFE mapping; +#endif + FESystem fe; DoFHandler dof_handler; -- 2.39.5