diff options
Diffstat (limited to 'src/Tree.h')
-rw-r--r-- | src/Tree.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -13,7 +13,7 @@ class Tree { public: Tree(const AbstractNode *root = NULL) : root_node(root) {} - ~Tree() {} + ~Tree(); void setRoot(const AbstractNode *root); const AbstractNode *root() const { return this->root_node; } |