I want to use find method of iterator to check if an instance of class I have defined already in the vector or not. I have overloaded the == operator for the class. However, I couldn’t get it to compile.
What am I missing here?
Thanks n advance.
here is a snippet from the code:
vector<ContourEdgeIndexes>::iterator it = find(contourEdges.begin(),contourEdges.end(),contourEdgeCand);
if(it != contourEdges.end()) {
contourEdges.erase(it);
}
compiler gives this error:
error: no matching function for call to ‘find(std::vector<ContourEdgeIndexes>::iterator, std::vector<ContourEdgeIndexes>::iterator, ContourEdgeIndexes&)’
edit:
and here is the overloaded == operator:
bool operator == (ContourEdgeIndexes& rhs) {
if((this->first == rhs.first) && (this->second == rhs.second))
return true;
else
return false;
}
Your operator should accept constant reference to
ContourEdgeIndexes, if it defined as member. Also operator itself should be const.