remove unused argument.

This commit is contained in:
Liu Ming 2016-07-08 08:19:03 +08:00
parent c5fd3b2161
commit 77fedce11e
3 changed files with 3 additions and 3 deletions

View File

@ -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_);

View File

@ -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.

View File

@ -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);
}