Merge pull request #703 from andlaus/remove_strict_parsing

adapt to the removal of the "strict parsing" concept
This commit is contained in:
Bård Skaflestad 2014-12-11 13:39:26 +01:00
commit e9eb1b8b61

View File

@ -136,7 +136,7 @@ std::shared_ptr<Opm::BlackoilState> createBlackOilState(Opm::EclipseGridConstPtr
Opm::DeckConstPtr createDeck(const std::string& eclipse_data_filename) {
Opm::ParserPtr parser(new Opm::Parser());
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;
}