Searched defs:DestructionTester (Results 1 – 1 of 1) sorted by relevance
158 class DestructionTester { class160 DestructionTester() { print_default_created(this); } in DestructionTester() function in DestructionTester162 DestructionTester(const DestructionTester &) { print_copy_created(this); } in DestructionTester() argument163 DestructionTester(DestructionTester &&) { print_move_created(this); } in DestructionTester() function in DestructionTester164 …DestructionTester &operator=(const DestructionTester &) { print_copy_assigned(this); return *this;… in operator =()165 DestructionTester &operator=(DestructionTester &&) { print_move_assigned(this); return *this; } in operator =() argument