Parser.cpp: Include Missing Header

The implementation uses std::stack and therefore needs a declaration
of this type in scope.  This apparently built by accident earlier.
While here, also include a few other headers to make Parser.[hc]pp
more self-contained.
This commit is contained in:
Bård Skaflestad
2020-03-22 17:06:38 +01:00
parent 01d6ad95e0
commit e7324ccd95
2 changed files with 9 additions and 1 deletions

View File

@@ -21,11 +21,15 @@
#define OPM_PARSER_HPP
#include <iosfwd>
#include <list>
#include <map>
#include <memory>
#include <string>
#include <utility>
#include <vector>
#include <list>
#include <stddef.h>
#include <opm/common/utility/FileSystem.hpp>
#include <opm/parser/eclipse/EclipseState/EclipseState.hpp>