Advertisement
bogolyubskiyalexey

kaspersky problem #1: diff

Jul 15th, 2018
170
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.25 KB | None | 0 0
  1. 0a1,2
  2. > // https://habr.com/article/353768/
  3. > // problem #1
  4. 9a12
  5. >   Item(Item&& obj): m_data(std::move(obj.m_data)) { }
  6. 19a23,27
  7. >     ItemEx(ItemEx&& obj)
  8. >         : Item(std::move(obj))
  9. >         , m_dataEx(std::move(obj.m_dataEx))
  10. >     { }
  11. >
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement