Skip to content
Snippets Groups Projects
Commit ea8427b9 authored by Robert K's avatar Robert K
Browse files

[bugfix] fixedsize --> fixedSize.

parent c0e192fe
No related branches found
No related tags found
No related merge requests found
......@@ -29,7 +29,7 @@ foreach(variant ball euler transport)
if("${variant}" STREQUAL "ball")
target_compile_definitions(main_${variant} PRIVATE "ALUGRID_COUNT_GLOBALCOMM")
endif()
target_compile_definitions(main_${variant} PUBLIC "ALUGRID_CONFORM" "GRIDDIM=3" "WORLDDIM=3")
target_compile_definitions(main_${variant} PUBLIC "ALUGRID_CUBE" "GRIDDIM=3" "WORLDDIM=3")
foreach(type cube simplex conform)
string(TOUPPER ${type} type_upper)
......
......@@ -40,7 +40,7 @@ public:
}
//! see documentation in Dune::CommDataHandleIF
bool fixedsize ( int dim, int codim ) const
bool fixedSize ( int dim, int codim ) const
{
return (codim > 0);
}
......
......@@ -449,7 +449,7 @@ struct PiecewiseFunction< View, Range >::CommDataHandle
}
//! see documentation in Dune::CommDataHandleIF
bool fixedsize ( int dim, int codim ) const
bool fixedSize ( int dim, int codim ) const
{
return true;
}
......
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