diff --git a/dumux/common/simplexgridcreator.hh b/dumux/common/simplexgridcreator.hh index 9dccb0f8d3fe421eee5e4780b0e78622a9f86ff5..7490a6d705cebfa194733e2147d9058689dbe59c 100644 --- a/dumux/common/simplexgridcreator.hh +++ b/dumux/common/simplexgridcreator.hh @@ -47,7 +47,7 @@ NEW_PROP_TAG(Grid); * simplices. */ template <class TypeTag> -class StructuredSimplexGridCreator +class SimplexGridCreator { typedef typename GET_PROP_TYPE(TypeTag, Scalar) Scalar; typedef typename GET_PROP_TYPE(TypeTag, Grid) Grid; @@ -106,7 +106,7 @@ private: }; template <class TypeTag> -typename StructuredSimplexGridCreator<TypeTag>::GridPointer StructuredSimplexGridCreator<TypeTag>::simplexGrid_; +typename SimplexGridCreator<TypeTag>::GridPointer SimplexGridCreator<TypeTag>::simplexGrid_; }