7 Aug
2009
7 Aug
'09
2:49 a.m.
On Thursday 06 August 2009, Ryan McConnehey wrote:
Is it possible to have std::find compare the class that the shared_ptr is pointing too?
It would probably be easier to use std::find_if()
I have a list of shared_ptr of a class called FundamentalTypes. The class has it's own operator==. I'd like to search the list with std::find using the class's operator==. I've included the class with the key elements I'm referring too.