Tagged Questions
5
votes
2answers
7k views
Using .reset() to free a boost::shared_ptr with sole ownership
I'm storing an object (TTF_Font) in a shared_ptr that is provided to me from a third-party API. I cannot use new or delete on the object, so the shared_ptr is also provided a "freeing" functor.
// ...