From 5c2e97d7b87510ce08069ce4d737e3f48c54a9bd Mon Sep 17 00:00:00 2001
From: Timo Koch <timo.koch@iws.uni-stuttgart.de>
Date: Thu, 21 Dec 2017 14:56:01 +0100
Subject: [PATCH] [tutorial] Fix missing includes

---
 tutorial/ex2/mylocalresidual.hh          | 6 ++++--
 tutorial/solution/ex2/mylocalresidual.hh | 3 +++
 2 files changed, 7 insertions(+), 2 deletions(-)

diff --git a/tutorial/ex2/mylocalresidual.hh b/tutorial/ex2/mylocalresidual.hh
index 6e9b0c6790..036a341e5c 100644
--- a/tutorial/ex2/mylocalresidual.hh
+++ b/tutorial/ex2/mylocalresidual.hh
@@ -25,8 +25,10 @@
 #ifndef DUMUX_MY_COMPOSITIONAL_LOCAL_RESIDUAL_HH
 #define DUMUX_MY_COMPOSITIONAL_LOCAL_RESIDUAL_HH
 
-namespace Dumux
-{
+#include <dumux/common/properties.hh>
+
+namespace Dumux {
+
 /*!
  * \ingroup Implicit
  * \ingroup ImplicitLocalResidual
diff --git a/tutorial/solution/ex2/mylocalresidual.hh b/tutorial/solution/ex2/mylocalresidual.hh
index c4f6ff4060..0cede53f48 100644
--- a/tutorial/solution/ex2/mylocalresidual.hh
+++ b/tutorial/solution/ex2/mylocalresidual.hh
@@ -25,6 +25,9 @@
 #ifndef DUMUX_MY_COMPOSITIONAL_LOCAL_RESIDUAL_HH
 #define DUMUX_MY_COMPOSITIONAL_LOCAL_RESIDUAL_HH
 
+#include <dumux/common/properties.hh>
+#include <dumux/common/parameters.hh>
+
 namespace Dumux
 {
 /*!
-- 
GitLab