add constructor BinaryTree::Tree

This commit is contained in:
2019-04-29 19:25:21 +02:00
parent 1814b8208a
commit 825379ae1b

View File

@@ -127,5 +127,9 @@ public:
} }
} }
} }
Tree()
: root(nullptr)
{}
}; };
} // namespace BinaryTree } // namespace BinaryTree