From 59e15d8ec877e8f35c871b1b9221dd97e1f4f80d Mon Sep 17 00:00:00 2001
From: Timo Koch <timo.koch@iws.uni-stuttgart.de>
Date: Mon, 16 Mar 2020 19:34:41 +0100
Subject: [PATCH] [fix] Shadow template parameter error

---
 dumux/io/loadsolution.hh | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dumux/io/loadsolution.hh b/dumux/io/loadsolution.hh
index 1cc5f2f37c..c53517ce18 100644
--- a/dumux/io/loadsolution.hh
+++ b/dumux/io/loadsolution.hh
@@ -69,11 +69,11 @@ public:
 
 #if DUNE_VERSION_GT(DUNE_GRID,2,7)
     //! returns true if size per entity of given dim and codim is a constant
-    bool fixedSize(int dim, int codim) const
+    bool fixedSize(int dim, int cd) const
     { return true; }
 #else
     //! returns true if size per entity of given dim and codim is a constant
-    bool fixedsize(int dim, int codim) const
+    bool fixedsize(int dim, int cd) const
     { return true; }
 #endif
 
-- 
GitLab