From c41b82c2da167f4ca5bb7777beb2fc787b2133d8 Mon Sep 17 00:00:00 2001 From: IvBu <st116086@stud.uni-stuttgart.de> Date: Fri, 27 Oct 2023 15:54:05 +0200 Subject: [PATCH] [bugfix][experimental] Add missing header guard --- dumux/experimental/assembly/multistagefvlocaloperator.hh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/dumux/experimental/assembly/multistagefvlocaloperator.hh b/dumux/experimental/assembly/multistagefvlocaloperator.hh index eddc10fbe2..3444af0104 100644 --- a/dumux/experimental/assembly/multistagefvlocaloperator.hh +++ b/dumux/experimental/assembly/multistagefvlocaloperator.hh @@ -10,6 +10,8 @@ * \ingroup Assembly * \brief A local operator wrapper for multi-stage time stepping schemes */ +#ifndef DUMUX_EXPERIMENTAL_MULTISTAGE_FV_LOCAL_OPERATOR_HH +#define DUMUX_EXPERIMENTAL_MULTISTAGE_FV_LOCAL_OPERATOR_HH #include <cmath> #include <dumux/discretization/extrusion.hh> @@ -113,3 +115,5 @@ private: }; } // end namespace Dumux::Experimental + +#endif -- GitLab