My class inherits from a map object:
This is the method I am trying to implement:
double MyCustomClass::returnValueForKey(string key){
return this->find(key); //<--- No Viable conversion from iterator
}
How can I get something like this to work?