Add virtual dtor to schema

This commit is contained in:
Sven Fink 2020-02-10 08:00:07 +01:00 committed by Patrick Boettcher
parent 2969393afa
commit e146b37a32

View File

@ -36,6 +36,8 @@ protected:
root_schema *root_;
public:
virtual ~schema() = default;
schema(root_schema *root)
: root_(root) {}