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

Fixed internal linkage of functions in VTKEntityType.h

parent 8f922157
No related branches found
No related tags found
Loading
......@@ -44,7 +44,7 @@ enum class VTKEntityType
Pyramid = 14
};
std::ostream& operator<<( std::ostream& str, VTKEntityType type )
static std::ostream& operator<<( std::ostream& str, VTKEntityType type )
{
switch( type )
{
......@@ -96,7 +96,7 @@ std::ostream& operator<<( std::ostream& str, VTKEntityType type )
return str;
}
int getVTKEntityDimension( VTKEntityType type )
static int getVTKEntityDimension( VTKEntityType type )
{
switch( type )
{
......
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