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:
Robert Osfield
2002-06-18 09:09:37 +00:00
parent 6767dd49d0
commit d3b4a36447

View File

@@ -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));
}
}