adapt to the removal of the "strict parsing" concept

This commit is contained in:
Andreas Lauser 2014-12-11 13:11:33 +01:00
parent 3c75d3f439
commit be9f181a94

View File

@ -136,7 +136,7 @@ std::shared_ptr<Opm::BlackoilState> createBlackOilState(Opm::EclipseGridConstPtr
Opm::DeckConstPtr createDeck(const std::string& eclipse_data_filename) { Opm::DeckConstPtr createDeck(const std::string& eclipse_data_filename) {
Opm::ParserPtr parser(new Opm::Parser()); Opm::ParserPtr parser(new Opm::Parser());
Opm::ParserLogPtr parserLog(new Opm::ParserLog); Opm::ParserLogPtr parserLog(new Opm::ParserLog);
Opm::DeckConstPtr deck = parser->parseFile(eclipse_data_filename, true, parserLog); Opm::DeckConstPtr deck = parser->parseFile(eclipse_data_filename, parserLog);
return deck; return deck;
} }