Skip to content
Snippets Groups Projects
Commit 06a5a647 authored by Jakub Klinkovský's avatar Jakub Klinkovský
Browse files

Fixed Mesh::entitiesAvailable method

parent 08ec00ed
No related branches found
No related tags found
Loading
......@@ -52,8 +52,8 @@ class Mesh : public Object/*,
static constexpr int getMeshDimension();
template< int Dimension >
bool entitiesAvalable() const;
template< int Dimensions >
static constexpr bool entitiesAvailable();
GlobalIndexType getNumberOfCells() const;
......
......@@ -46,10 +46,10 @@ getMeshDimension()
}
template< typename MeshConfig >
template< int Dimension >
bool
template< int Dimensions >
constexpr bool
Mesh< MeshConfig >::
entitiesAvalable() const
entitiesAvailable()
{
return MeshTraitsType::template EntityTraits< Dimension >::available;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment