コード例 #1
0
 B(B &&) : std::enable_shared_from_this<B>() { print_move_created(this); }
コード例 #2
0
 ExampleMandA(ExampleMandA &&e) : value(e.value) { print_move_created(this); }
コード例 #3
0
 A(A &&) { print_move_created(this); }