Guest User

Untitled

a guest
Jan 20th, 2018
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. Move constructor: 1 load and 2 stores.
  2.  
  3. Move assignment: 2 loads and 2 stores.
  4.  
  5. MyClass& operator=(MyClass&& rhs);//lhs is this
  6.  
  7. MyClass(MyClass&& rhs);
Add Comment
Please, Sign In to add comment