From 10f440427a1d0099f21ab88a0d93c2048b374ce8 Mon Sep 17 00:00:00 2001 From: Elias Pipping <elias.pipping@fu-berlin.de> Date: Mon, 31 Oct 2011 12:41:08 +0100 Subject: [PATCH] include guards --- src/myblockproblem.hh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/myblockproblem.hh b/src/myblockproblem.hh index 27d006b4..a8a0c41a 100644 --- a/src/myblockproblem.hh +++ b/src/myblockproblem.hh @@ -1,5 +1,8 @@ // Based on dune/tnnmg/problem-classes/blocknonlineargsproblem.hh +#ifndef MY_BLOCK_PROBLEM_HH +#define MY_BLOCK_PROBLEM_HH + // #include <dune/common/parametertree.hh> #include <dune/common/bitsetvector.hh> @@ -140,3 +143,5 @@ class MyBlockProblem<MyConvexProblemTypeTEMPLATE>::IterateObject { * performed */ int bisectionsteps; }; + +#endif -- GitLab