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

Fixed more instances of using StaticVector::size instead of getSize()

parent 5e2aed0c
No related branches found
No related tags found
No related merge requests found
......@@ -141,7 +141,7 @@ public:
std::cerr << "Unknown cell topology: mesh dimension is " << meshDimension << ", number of vertices in cells is " << verticesInCell << "." << std::endl;
return false;
}
return true;
}
......@@ -150,8 +150,8 @@ public:
{
typedef typename MeshType::PointType PointType;
typedef MeshBuilder< MeshType > MeshBuilder;
const int dimension = PointType::size;
const int dimension = PointType::getSize();
std::ifstream inputFile( fileName.getString() );
if( ! inputFile )
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment