From 5d977a19f0b4be5653a41669abeca3b3d385a34c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Klinkovsk=C3=BD?= <klinkovsky@mmg.fjfi.cvut.cz> Date: Thu, 2 Jan 2020 14:21:20 +0100 Subject: [PATCH] Fixed linkage of the FileName::resetDistributedSystemNodeId method --- src/TNL/FileName.hpp | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/src/TNL/FileName.hpp b/src/TNL/FileName.hpp index 47e1ac9226..1f7b886ddf 100644 --- a/src/TNL/FileName.hpp +++ b/src/TNL/FileName.hpp @@ -69,9 +69,7 @@ inline void FileName::setDistributedSystemNodeId( size_t nodeId ) } template< typename Coordinates > -void -FileName:: -setDistributedSystemNodeCoordinates( const Coordinates& nodeId ) +void FileName::setDistributedSystemNodeCoordinates( const Coordinates& nodeId ) { this->distributedSystemNodeId = "-@"; this->distributedSystemNodeId += convertToString( nodeId[ 0 ] ); @@ -82,9 +80,7 @@ setDistributedSystemNodeCoordinates( const Coordinates& nodeId ) } } -void -FileName:: -resetDistributedSystemNodeId() +inline void FileName::resetDistributedSystemNodeId() { this->distributedSystemNodeId = ""; } -- GitLab