Merge pull request #4344 from akva2/trim_iostream

Trim some iostream includes
This commit is contained in:
Bård Skaflestad 2023-01-03 16:02:12 +01:00 committed by GitHub
commit 181a883370
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 3 additions and 4 deletions

View File

@ -259,7 +259,7 @@ namespace Opm
if (EWOMS_GET_PARAM(TypeTag, int, PrintProperties) == 1) {
doExit = true;
if (mpiRank == 0)
Properties::printValues<TypeTag>();
Properties::printValues<TypeTag>(std::cout);
}
if (EWOMS_GET_PARAM(TypeTag, int, PrintParameters) == 1) {

View File

@ -19,7 +19,6 @@
#include <config.h>
#include <algorithm>
#include <iostream>
#include <opm/common/OpmLog/OpmLog.hpp>
#include <opm/common/ErrorMacros.hpp>

View File

@ -20,7 +20,7 @@
#define OPM_ADAPTIVESIMULATORTIMER_HEADER_INCLUDED
#include <cassert>
#include <iostream>
#include <iosfwd>
#include <vector>
#include <limits>
#include <algorithm>

View File

@ -1,5 +1,5 @@
#include <config.h>
#include <iostream>
#include <fstream>
#define BOOST_TEST_MODULE CsrToCscOffsetMap
#include <boost/test/unit_test.hpp>