diff --git a/examples/mirror_grid.cpp b/examples/mirror_grid.cpp index 7ca0df56..8d805767 100644 --- a/examples/mirror_grid.cpp +++ b/examples/mirror_grid.cpp @@ -23,7 +23,11 @@ #include #include #include +#include +#include +#include +#include #include #include diff --git a/examples/sim_2p_incomp.cpp b/examples/sim_2p_incomp.cpp index 3104fc46..ec88f2e8 100644 --- a/examples/sim_2p_incomp.cpp +++ b/examples/sim_2p_incomp.cpp @@ -45,6 +45,7 @@ #include #include +#include #include #include diff --git a/opm/core/grid/GridManager.cpp b/opm/core/grid/GridManager.cpp index fd23f0f8..442f3627 100644 --- a/opm/core/grid/GridManager.cpp +++ b/opm/core/grid/GridManager.cpp @@ -25,6 +25,8 @@ #include #include #include +#include +#include #include #include diff --git a/opm/core/io/eclipse/EclipseGridInspector.cpp b/opm/core/io/eclipse/EclipseGridInspector.cpp index 75f04f3f..71889901 100644 --- a/opm/core/io/eclipse/EclipseGridInspector.cpp +++ b/opm/core/io/eclipse/EclipseGridInspector.cpp @@ -41,6 +41,9 @@ #include #include #include +#include +#include +#include #include #include #include diff --git a/opm/core/io/eclipse/EclipseReader.cpp b/opm/core/io/eclipse/EclipseReader.cpp index df064ca2..42bcf0e4 100644 --- a/opm/core/io/eclipse/EclipseReader.cpp +++ b/opm/core/io/eclipse/EclipseReader.cpp @@ -28,6 +28,7 @@ #include #include #include +#include #include #include diff --git a/opm/core/io/eclipse/EclipseWriter.cpp b/opm/core/io/eclipse/EclipseWriter.cpp index 36028659..3b4527a1 100644 --- a/opm/core/io/eclipse/EclipseWriter.cpp +++ b/opm/core/io/eclipse/EclipseWriter.cpp @@ -40,6 +40,7 @@ #include #include #include +#include #include #include #include diff --git a/opm/core/props/IncompPropertiesSinglePhase.cpp b/opm/core/props/IncompPropertiesSinglePhase.cpp index 4790f7f2..b860bd73 100644 --- a/opm/core/props/IncompPropertiesSinglePhase.cpp +++ b/opm/core/props/IncompPropertiesSinglePhase.cpp @@ -25,6 +25,8 @@ #include #include +#include +#include #include namespace Opm diff --git a/opm/core/props/pvt/PvtConstCompr.hpp b/opm/core/props/pvt/PvtConstCompr.hpp index 16a5bceb..9c76d96c 100644 --- a/opm/core/props/pvt/PvtConstCompr.hpp +++ b/opm/core/props/pvt/PvtConstCompr.hpp @@ -22,6 +22,8 @@ #include #include +#include +#include #include #include diff --git a/opm/core/props/pvt/PvtInterface.hpp b/opm/core/props/pvt/PvtInterface.hpp index 591773c6..7c9c24cb 100644 --- a/opm/core/props/pvt/PvtInterface.hpp +++ b/opm/core/props/pvt/PvtInterface.hpp @@ -20,6 +20,8 @@ #ifndef OPM_PVTINTERFACE_HEADER_INCLUDED #define OPM_PVTINTERFACE_HEADER_INCLUDED +#include + #include #include diff --git a/opm/core/props/pvt/PvtPropertiesIncompFromDeck.cpp b/opm/core/props/pvt/PvtPropertiesIncompFromDeck.cpp index 3ebe16fb..2428cc65 100644 --- a/opm/core/props/pvt/PvtPropertiesIncompFromDeck.cpp +++ b/opm/core/props/pvt/PvtPropertiesIncompFromDeck.cpp @@ -24,6 +24,8 @@ #include #include #include +#include +#include #include diff --git a/tests/test_EclipseWriter.cpp b/tests/test_EclipseWriter.cpp index 437c64ec..918150e3 100644 --- a/tests/test_EclipseWriter.cpp +++ b/tests/test_EclipseWriter.cpp @@ -34,8 +34,10 @@ #include #include +#include #include #include +#include #include #include #include diff --git a/tests/test_parser.cpp b/tests/test_parser.cpp index 5484e5d0..0ee571f1 100644 --- a/tests/test_parser.cpp +++ b/tests/test_parser.cpp @@ -31,6 +31,8 @@ #include #include #include +#include +#include #include #include diff --git a/tests/test_pinchprocessor.cpp b/tests/test_pinchprocessor.cpp index 96163299..aeeff61d 100644 --- a/tests/test_pinchprocessor.cpp +++ b/tests/test_pinchprocessor.cpp @@ -41,6 +41,7 @@ #include #include #include +#include #include #include #include diff --git a/tests/test_timer.cpp b/tests/test_timer.cpp index de78e8fc..4b7552a2 100644 --- a/tests/test_timer.cpp +++ b/tests/test_timer.cpp @@ -29,6 +29,7 @@ #include #include +#include #include #include #include diff --git a/tests/test_ug.cpp b/tests/test_ug.cpp index ec583c1d..2225cff0 100644 --- a/tests/test_ug.cpp +++ b/tests/test_ug.cpp @@ -26,7 +26,9 @@ #include #include #include +#include #include +#include using namespace std; diff --git a/tests/test_wellcollection.cpp b/tests/test_wellcollection.cpp index 76697655..ac6e4934 100644 --- a/tests/test_wellcollection.cpp +++ b/tests/test_wellcollection.cpp @@ -41,9 +41,9 @@ using namespace Opm; BOOST_AUTO_TEST_CASE(AddWellsAndGroupToCollection) { ParserPtr parser(new Parser()); - boost::filesystem::path scheduleFile("wells_group.data"); + std::string scheduleFile("wells_group.data"); ParseMode parseMode; - DeckConstPtr deck = parser->parseFile(scheduleFile.string() , parseMode); + DeckConstPtr deck = parser->parseFile(scheduleFile, parseMode); EclipseStateConstPtr eclipseState(new EclipseState(deck, parseMode)); PhaseUsage pu = phaseUsageFromDeck(eclipseState); diff --git a/tests/test_wellsgroup.cpp b/tests/test_wellsgroup.cpp index deb7c632..8f9a76ee 100644 --- a/tests/test_wellsgroup.cpp +++ b/tests/test_wellsgroup.cpp @@ -49,9 +49,9 @@ using namespace Opm; BOOST_AUTO_TEST_CASE(ConstructGroupFromWell) { ParserPtr parser(new Parser()); - boost::filesystem::path scheduleFile("wells_group.data"); + std::string scheduleFile("wells_group.data"); ParseMode parseMode; - DeckConstPtr deck = parser->parseFile(scheduleFile.string() , parseMode); + DeckConstPtr deck = parser->parseFile(scheduleFile, parseMode); EclipseStateConstPtr eclipseState(new EclipseState(deck , parseMode)); PhaseUsage pu = phaseUsageFromDeck(eclipseState); @@ -83,8 +83,8 @@ BOOST_AUTO_TEST_CASE(ConstructGroupFromWell) { BOOST_AUTO_TEST_CASE(ConstructGroupFromGroup) { ParserPtr parser(new Parser()); ParseMode parseMode; - boost::filesystem::path scheduleFile("wells_group.data"); - DeckConstPtr deck = parser->parseFile(scheduleFile.string() , parseMode); + std::string scheduleFile("wells_group.data"); + DeckConstPtr deck = parser->parseFile(scheduleFile, parseMode); EclipseStateConstPtr eclipseState(new EclipseState(deck , parseMode)); PhaseUsage pu = phaseUsageFromDeck(eclipseState);