Added the length argument to a std::string argument, under Linux it
compiled with the default value npos, under Windows it broke the build, add the npost excpilicity should get round this difference in implementation.
This commit is contained in:
@@ -1184,7 +1184,7 @@ void Registry::convertStringPathIntoFilePathList(const std::string& paths,FilePa
|
||||
start = end+1;
|
||||
}
|
||||
|
||||
filepath.push_back(std::string(paths,start));
|
||||
filepath.push_back(std::string(paths,start,std::string::npos));
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user