Skip to content
Snippets Groups Projects
Commit 59e15d8e authored by Timo Koch's avatar Timo Koch
Browse files

[fix] Shadow template parameter error

parent 87bf7955
No related branches found
No related tags found
1 merge request!1887[fix] Shadow template parameter error
...@@ -69,11 +69,11 @@ public: ...@@ -69,11 +69,11 @@ public:
#if DUNE_VERSION_GT(DUNE_GRID,2,7) #if DUNE_VERSION_GT(DUNE_GRID,2,7)
//! returns true if size per entity of given dim and codim is a constant //! 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; } { return true; }
#else #else
//! returns true if size per entity of given dim and codim is a constant //! 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; } { return true; }
#endif #endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment