From 8620ad485acc2a40e3500741ce9649de8bb3a428 Mon Sep 17 00:00:00 2001 From: Andrea Brambilla Date: Mon, 6 Nov 2017 15:13:26 +0100 Subject: [PATCH] Added missing include in Equil.hpp When running test in opm-parser, this never showed up as a problem since Equil.hpp seems to be always included after is included (either directly or by including other files). However, this can become a problem when using opm-parser in other projects (eg, sunbeam) --- opm/parser/eclipse/EclipseState/InitConfig/Equil.hpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/opm/parser/eclipse/EclipseState/InitConfig/Equil.hpp b/opm/parser/eclipse/EclipseState/InitConfig/Equil.hpp index 9c9f6ccf6..804383334 100644 --- a/opm/parser/eclipse/EclipseState/InitConfig/Equil.hpp +++ b/opm/parser/eclipse/EclipseState/InitConfig/Equil.hpp @@ -1,6 +1,8 @@ #ifndef OPM_EQUIL_HPP #define OPM_EQUIL_HPP +#include + namespace Opm { class DeckKeyword;