From f7376d0cb48c92788560a09f01978018f88eb334 Mon Sep 17 00:00:00 2001 From: Felix Schindler <felix.schindler@wwu.de> Date: Mon, 15 Feb 2021 13:35:17 +0100 Subject: [PATCH] [P|tools] fix available adaptive grids in absence of alugrid --- python/dune/gdt/tools/adaptation-helper.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/python/dune/gdt/tools/adaptation-helper.cc b/python/dune/gdt/tools/adaptation-helper.cc index a6eaafb47..1b30ca480 100644 --- a/python/dune/gdt/tools/adaptation-helper.cc +++ b/python/dune/gdt/tools/adaptation-helper.cc @@ -194,10 +194,10 @@ public: } // namespace Dune -using AvailableAdaptiveGridTypes = std::tuple<ONED_1D, +using AvailableAdaptiveGridTypes = std::tuple<ONED_1D #if HAVE_DUNE_ALUGRID - ALU_2D_SIMPLEX_CONFORMING, - ALU_3D_SIMPLEX_CONFORMING + ,ALU_2D_SIMPLEX_CONFORMING + ,ALU_3D_SIMPLEX_CONFORMING #endif >; -- GitLab