expected constructor, destructor, or type conversion before ‘(’ token
Because on the line:
Node* BinTree::make( float d )
the type Node
is a member of class BinTree
.
Make it:
BinTree::Node* BinTree::make( float d )
Because on the line:
Node* BinTree::make( float d )
the type Node
is a member of class BinTree
.
Make it:
BinTree::Node* BinTree::make( float d )