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 …
3
votes
Getting a boost::shared_ptr for this
boost has a solution for this use case, check enable_shared_from_this
…
