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

Fixed linkage of the FileName::resetDistributedSystemNodeId method

parent 873f0620
No related branches found
No related tags found
No related merge requests found
...@@ -69,9 +69,7 @@ inline void FileName::setDistributedSystemNodeId( size_t nodeId ) ...@@ -69,9 +69,7 @@ inline void FileName::setDistributedSystemNodeId( size_t nodeId )
} }
template< typename Coordinates > template< typename Coordinates >
void void FileName::setDistributedSystemNodeCoordinates( const Coordinates& nodeId )
FileName::
setDistributedSystemNodeCoordinates( const Coordinates& nodeId )
{ {
this->distributedSystemNodeId = "-@"; this->distributedSystemNodeId = "-@";
this->distributedSystemNodeId += convertToString( nodeId[ 0 ] ); this->distributedSystemNodeId += convertToString( nodeId[ 0 ] );
...@@ -82,9 +80,7 @@ setDistributedSystemNodeCoordinates( const Coordinates& nodeId ) ...@@ -82,9 +80,7 @@ setDistributedSystemNodeCoordinates( const Coordinates& nodeId )
} }
} }
void inline void FileName::resetDistributedSystemNodeId()
FileName::
resetDistributedSystemNodeId()
{ {
this->distributedSystemNodeId = ""; this->distributedSystemNodeId = "";
} }
......
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