| 34 | std::string toString() const { return "ExampleMandA[value=" + std::to_string(value) + "]"; } |
| 35 | |
| 36 | void operator=(const ExampleMandA &e) { |
| 37 | print_copy_assigned(this); |
| 38 | value = e.value; |
| 39 | } |
| 40 | void operator=(ExampleMandA &&e) noexcept { |
| 41 | print_move_assigned(this); |
| 42 | value = e.value; |
nothing calls this directly
no test coverage detected