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

@@ -21,20 +21,19 @@
#ifndef OPM_PARALLELFILEMERGER_HEADER_INCLUDED
#define OPM_PARALLELFILEMERGER_HEADER_INCLUDED
#include <filesystem>
#include <fstream>
#include <memory>
#include <regex>
#include <string>
#include <opm/common/utility/FileSystem.hpp>
namespace Opm
{
namespace detail
{
namespace fs = ::Opm::filesystem;
namespace fs = ::std::filesystem;
/// \brief A functor that merges multiple files of a parallel run to one file.
///