Im doing a hashing function, and it wont compile, I copied the function below.
Thank you for your help, and excuse my english
template <class Object>
bool FHhashSC<Object>::contains(const Object & x) const
{
const FHlist<Object> &theList = mLists[myHash(x)];
typename FHlist<Object>::iterator iter;
for (iter = theList.begin(); iter != theList.end(); iter++)
if (*iter == x)
return true;
// not found
return false;
}