fix for error: pointer being freed was not allocated

This commit is contained in:
2021-09-20 18:22:48 +02:00
parent 419adea8cb
commit 450eb4b74f

View File

@@ -54,6 +54,7 @@ namespace usql {
NodeType node_type;
explicit Node(const NodeType type) : node_type(type) {}
virtual ~Node() = default;
};