diff --git a/src/common/Config/ConfigMgr.cpp b/src/common/Config/ConfigMgr.cpp index 320bfe2e..91f8ff42 100644 --- a/src/common/Config/ConfigMgr.cpp +++ b/src/common/Config/ConfigMgr.cpp @@ -14,7 +14,7 @@ bool Core::ConfigMgr::loadConfig( const std::string& configName ) auto configDir = std::experimental::filesystem::path( m_configFolderRoot ); m_pInih = std::unique_ptr< INIReader >( new INIReader( - std::experimental::filesystem::path( configDir / configName ) ).string() ); + std::experimental::filesystem::path( configDir / configName ).string() ) ); if( m_pInih->ParseError() < 0 ) return false;