Fixed unused parameter warning in PythonInterp.hpp

This commit is contained in:
Markus Blatt
2019-10-17 16:50:22 +02:00
parent a0d5776eb9
commit 5584d6bb0a

View File

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