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 <vector> is included (either
directly or by including other files). However, this can become a
problem when using opm-parser in other projects (eg, sunbeam)
This commit is contained in:
Andrea Brambilla
2017-11-06 15:13:26 +01:00
parent ea10f1331a
commit 8620ad485a

View File

@@ -1,6 +1,8 @@
#ifndef OPM_EQUIL_HPP
#define OPM_EQUIL_HPP
#include <vector>
namespace Opm {
class DeckKeyword;