7
votes
What is std::pair?
You sometimes need to return 2 values from a function, and it's often overkill to go and create a class just for that.
std:pair comes in handy in those cases.
I think boost:compress …
2
votes
What’s the best hashing algorithm to use on a stl string when using hash_map?
Boost has an boost::hash library which can provides some basic hash functions for most common types.
…
6
votes
Vector iterator not dereferencable
Simple :
find fails since your newly created Circle can't be found in the vector with comparing Shape *
a failed find returns the end iterator which is not deferencable as ca …
