mirror of
https://github.com/OPM/opm-simulators.git
synced 2025-02-25 18:55:30 -06:00
remove unused argument.
This commit is contained in:
parent
c5fd3b2161
commit
77fedce11e
@ -413,7 +413,7 @@ namespace Opm
|
||||
ParseContext parseContext({{ ParseContext::PARSE_RANDOM_SLASH , InputError::IGNORE }});
|
||||
deck_ = parser->parseFile(deck_filename, parseContext);
|
||||
checkDeck(deck_, parser);
|
||||
MissingFeatures::checkKeywords(deck_, parser);
|
||||
MissingFeatures::checkKeywords(deck_);
|
||||
eclipse_state_.reset(new EclipseState(deck_, parseContext));
|
||||
auto ioConfig = eclipse_state_->getIOConfig();
|
||||
ioConfig->setOutputDir(output_dir_);
|
||||
|
@ -28,7 +28,7 @@ namespace Opm {
|
||||
|
||||
namespace MissingFeatures {
|
||||
|
||||
void checkKeywords(DeckConstPtr deck, ParserConstPtr parser)
|
||||
void checkKeywords(DeckConstPtr deck)
|
||||
{
|
||||
// These keywords are supported by opm-parser, but are not supported
|
||||
// by flow. For some of them, only part of the options are supported.
|
||||
|
@ -24,7 +24,7 @@ namespace Opm {
|
||||
|
||||
namespace MissingFeatures {
|
||||
|
||||
void checkKeywords(std::shared_ptr<const Deck> deck, std::shared_ptr<const Parser> parser);
|
||||
void checkKeywords(std::shared_ptr<const Deck> deck);
|
||||
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user