This is the error I get:
bst.hpp:9: error: no matching function for call to âBST<int>::findStartingAtNode(const int&, BNode<int>* const&) constâ
bst.hpp:14: note: candidates are: bool BST<T>::findStartingAtNode(const T&, BNode<T>*&) [with T = int]
I dont see the problem?
I'm trying to implement the find function for a binary search tree, all it does is return true if the value exists, false otherwise.