explicitly include <iostream> in files which use std::cout or std::cerr

This commit is contained in:
Andreas Lauser 2013-09-05 12:39:11 +02:00
parent 05af2ab6ff
commit 4859e77c79
5 changed files with 7 additions and 2 deletions

View File

@ -40,6 +40,7 @@
#include <opm/core/linalg/blas_lapack.h>
#include <opm/core/utility/ErrorMacros.hpp>
#include <iterator>
#include <iostream>
namespace Opm
{

View File

@ -58,6 +58,7 @@
#include <numeric>
#include <fstream>
#include <iostream>
namespace Opm

View File

@ -58,6 +58,7 @@
#include <numeric>
#include <fstream>
#include <iostream>
#ifdef HAVE_ERT
#include <opm/core/io/eclipse/writeECLData.hpp>

View File

@ -26,9 +26,10 @@
#include <opm/core/utility/miscUtilities.hpp>
#include <opm/core/utility/miscUtilitiesBlackoil.hpp>
#include <opm/core/pressure/tpfa/trans_tpfa.h>
#include <opm/core/utility/ErrorMacros.hpp>
#include <cmath>
#include <list>
#include <opm/core/utility/ErrorMacros.hpp>
#include <iostream>
// Choose error policy for scalar solves here.
typedef Opm::RegulaFalsi<Opm::WarnAndContinueOnError> RootFinder;

View File

@ -24,9 +24,10 @@
#include <opm/core/utility/RootFinders.hpp>
#include <opm/core/utility/miscUtilities.hpp>
#include <opm/core/pressure/tpfa/trans_tpfa.h>
#include <opm/core/utility/ErrorMacros.hpp>
#include <cmath>
#include <list>
#include <opm/core/utility/ErrorMacros.hpp>
#include <iostream>
// Choose error policy for scalar solves here.
typedef Opm::RegulaFalsi<Opm::WarnAndContinueOnError> RootFinder;