From 5584d6bb0abea7706f6b35199a1126cc75aa951a Mon Sep 17 00:00:00 2001 From: Markus Blatt Date: Thu, 17 Oct 2019 16:50:22 +0200 Subject: [PATCH] Fixed unused parameter warning in PythonInterp.hpp --- src/opm/parser/eclipse/Python/PythonInterp.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/opm/parser/eclipse/Python/PythonInterp.hpp b/src/opm/parser/eclipse/Python/PythonInterp.hpp index de486bec0..9388d932f 100644 --- a/src/opm/parser/eclipse/Python/PythonInterp.hpp +++ b/src/opm/parser/eclipse/Python/PythonInterp.hpp @@ -58,7 +58,7 @@ public: return this->fail(); }; - bool exec(const std::string& python_code, const Parser& parser, Deck& deck) { + bool exec(const std::string& /* python_code*/ , const Parser& /* parser */, Deck& /* deck */) { return this->fail(); }