我收到此错误消息
错误:没有匹配函数调用 HCTree::build(std::basic_ifstream < char, std::char_trait< char>> &) const
注意:候选者是:HCNode* HCTree::build(std::ifstream&) <近似匹配>
在.cpp
int HCTree::decode(ifstream &in) const {
if(root == NULL) {
root = build(in); <-- error here
}
return aux_decode(in, root); <-- similarly error here too
}
在.hpp
HCNode* build(ifstream &in);
我不退出明白我做错了什么