Skip to content
Snippets Groups Projects
Commit 2bce0032 authored by René Fritze's avatar René Fritze
Browse files

[tests] fixes missing HAVE_DUNE_GRID guards

parent 25be498d
No related branches found
No related tags found
No related merge requests found
......@@ -63,10 +63,12 @@ protected:
template <class GridType>
void dynamic_interface_check(const FunctionImp& func, GridType& grid) const
{
#if HAVE_DUNE_GRID
for (const auto& entity : Common::entityRange(grid.leafGridView()))
std::unique_ptr<LocalfunctionType> local_func = func.local_function(entity);
std::string tp = func.type();
std::string nm = func.name();
#endif
std::string tp = func.type();
std::string nm = func.name();
} // ... dynamic_interface_check(...)
void copy_check(const FunctionImp& func) const
......
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