ParallelFileMerger: avoid including fstream in header

This commit is contained in:
Arne Morten Kvarving
2023-02-01 15:40:51 +01:00
parent 5daf355a7b
commit 303f42b082
2 changed files with 2 additions and 1 deletions
@@ -23,6 +23,7 @@
#endif // HAVE_CONFIG_H #endif // HAVE_CONFIG_H
#include <opm/simulators/utils/ParallelFileMerger.hpp> #include <opm/simulators/utils/ParallelFileMerger.hpp>
#include <fstream>
#include <iostream> #include <iostream>
namespace Opm namespace Opm
+1 -1
View File
@@ -22,7 +22,7 @@
#define OPM_PARALLELFILEMERGER_HEADER_INCLUDED #define OPM_PARALLELFILEMERGER_HEADER_INCLUDED
#include <filesystem> #include <filesystem>
#include <fstream> #include <iosfwd>
#include <memory> #include <memory>
#include <regex> #include <regex>
#include <string> #include <string>