utility: filesystemfix
replaced boost::filesystem::path string() with generic_string() bug id = 1
This commit is contained in:
@@ -16,7 +16,7 @@ std::vector<std::string> FileSystem::getSourceFilesFromDirectory(
|
||||
{
|
||||
if (boost::filesystem::is_regular_file(*it) && isValidExtension(it->path().string(), extensions))
|
||||
{
|
||||
files.push_back(it->path().string());
|
||||
files.push_back(it->path().generic_string());
|
||||
}
|
||||
++it;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user