From 0aab8fc9a7feb0fccaaabdf9a10ba77fd0c3970f Mon Sep 17 00:00:00 2001
From: Elias Pipping <elias.pipping@fu-berlin.de>
Date: Mon, 31 Oct 2011 12:42:46 +0100
Subject: [PATCH] include guards

---
 src/myconvexproblem.hh | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/src/myconvexproblem.hh b/src/myconvexproblem.hh
index b7c06e83..34f0f0fe 100644
--- a/src/myconvexproblem.hh
+++ b/src/myconvexproblem.hh
@@ -1,5 +1,8 @@
 // Based on dune/tnnmg/problem-classes/convexproblem.hh
 
+#ifndef MY_CONVEX_PROBLEM_HH
+#define MY_CONVEX_PROBLEM_HH
+
 #include <dune/istl/bcrsmatrix.hh>
 
 #include <dune/tnnmg/problem-classes/nonlinearity.hh>
@@ -53,3 +56,5 @@ class MyConvexProblem {
 
   VectorType& u;
 };
+
+#endif
-- 
GitLab