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:
Arne Morten Kvarving
2019-05-28 06:25:47 +02:00
parent 48c363dafa
commit c9d1c50986

View File

@@ -303,5 +303,5 @@ Opm::ecl::OutputStream::outputFileName(const ResultSet& rsetDescriptor,
}.replace_extension(ext);
return (fs::path { rsetDescriptor.outputDir } / fname)
.generic().string();
.generic_string();
}