Advertisement
tinyevil

Untitled

Jul 29th, 2018
156
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.10 KB | None | 0 0
  1. shared_ptr<int> a = make_shared<int>(10);
  2.  
  3. shared_ptr<int> b(a);
  4. shared_ptr<int> c(a);
  5.  
  6. a.reset();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement