fix more warnings

This commit is contained in:
Johann Dreo 2020-04-28 16:37:48 +02:00
commit 8ad56f7ad3
9 changed files with 26 additions and 25 deletions

View file

@ -8,6 +8,7 @@ struct OpInterface
std::string _name;
OpInterface(std::string name) : _name(name) {}
virtual void operator()() = 0;
virtual ~OpInterface() {}
};
struct OpA : public OpInterface