TabulatedComponent: remove unnecessary <iostream> include

This commit is contained in:
Arne Morten Kvarving 2023-01-02 08:24:27 +01:00
parent f1ecc0c7cf
commit 83e7e45f2d
3 changed files with 4 additions and 2 deletions

View File

@ -30,7 +30,7 @@
#include <opm/material/fluidsystems/blackoilpvt/Co2GasPvt.hpp> #include <opm/material/fluidsystems/blackoilpvt/Co2GasPvt.hpp>
#include <opm/material/fluidsystems/blackoilpvt/BrineCo2Pvt.hpp> #include <opm/material/fluidsystems/blackoilpvt/BrineCo2Pvt.hpp>
#include <iostream>
template <class Co2Pvt> template <class Co2Pvt>
double densityGas(const Co2Pvt& co2Pvt, const double p, const double T, const double Rv) double densityGas(const Co2Pvt& co2Pvt, const double p, const double T, const double Rv)

View File

@ -31,7 +31,7 @@
#include <cmath> #include <cmath>
#include <limits> #include <limits>
#include <cassert> #include <cassert>
#include <iostream> #include <stdexcept>
#include <opm/material/common/MathToolbox.hpp> #include <opm/material/common/MathToolbox.hpp>

View File

@ -34,6 +34,8 @@
#include <opm/material/components/H2O.hpp> #include <opm/material/components/H2O.hpp>
#include <opm/material/components/TabulatedComponent.hpp> #include <opm/material/components/TabulatedComponent.hpp>
#include <iostream>
extern bool success; extern bool success;
bool success; bool success;