Add virtual dtor to schema

This commit is contained in:
Sven Fink 2020-02-10 08:00:07 +01:00
parent 2969393afa
commit 46d831ac50

View File

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