Include <sstream> for Class "ostringstream"

Some implementations do not get a transitive definition of class
"ostringstream" in scope through the other headers and therefore
fail to compile the member function

  SimulatorReport::reportStep(std::ostringstream&)
This commit is contained in:
Bård Skaflestad 2018-04-04 19:00:51 +02:00
parent 9897ae361e
commit 0f4354d8fd

View File

@ -18,10 +18,12 @@
*/
#include "config.h"
#include <opm/core/simulator/SimulatorReport.hpp>
#include <ostream>
#include <iomanip>
#include <opm/core/simulator/SimulatorReport.hpp>
#include <iomanip>
#include <ostream>
#include <sstream>
namespace Opm
{