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:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user