| 320 | static int move_assign_count{0}; |
| 321 | |
| 322 | static void reset_counters() |
| 323 | { |
| 324 | constructor_count = 0; |
| 325 | copy_constructor_count = 0; |
| 326 | move_constructor_count = 0; |
| 327 | copy_assign_count = 0; |
| 328 | move_assign_count = 0; |
| 329 | } |
| 330 | |
| 331 | struct optional_dummy |
| 332 | { |