fixed: avoid usage of boost::filesystem::path::generic()
this is not supported in older version of boost::filesystem. furthermore, it was always an experimental feature and and has been deprecated in newer versions. generic_string is available in all versions, so use that.
This commit is contained in:
@@ -303,5 +303,5 @@ Opm::ecl::OutputStream::outputFileName(const ResultSet& rsetDescriptor,
|
||||
}.replace_extension(ext);
|
||||
|
||||
return (fs::path { rsetDescriptor.outputDir } / fname)
|
||||
.generic().string();
|
||||
.generic_string();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user