Merge pull request #1123 from blattms/fix-unused-parameter-oython

Fixed unused parameter warning in PythonInterp.hpp
This commit is contained in:
Joakim Hove
2019-10-19 20:13:14 +02:00
committed by GitHub

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