Guest User

Untitled

a guest
May 23rd, 2018
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. bool function foo ()
  2. {
  3. // Use free to delete malloc'ed object
  4. boost::shared_ptr object (malloc (sizeof (char)), free);
  5. if (do_some_thing (object) == false)
  6. return false;
  7.  
  8. return true;
  9. }
Add Comment
Please, Sign In to add comment