use std::filesystem directly

This commit is contained in:
Arne Morten Kvarving
2021-11-01 12:31:40 +01:00
parent 1a80378b0a
commit 06bd25575f
9 changed files with 29 additions and 24 deletions

View File

@@ -23,6 +23,7 @@
#define BOOST_TEST_MODULE VFPTest
#include <algorithm>
#include <filesystem>
#include <memory>
#include <map>
#include <sstream>
@@ -645,7 +646,7 @@ BOOST_AUTO_TEST_CASE(ParseInterpolateRealisticVFPPROD)
auto units = Opm::UnitSystem::newMETRIC();
Opm::Parser parser;
Opm::filesystem::path file("VFPPROD2");
std::filesystem::path file("VFPPROD2");
auto deck = parser.parseFile(file.string());