| 132 | static int get_num_copy_assignment_calls() { return num_copy_assignment_calls; } |
| 133 | |
| 134 | bool operator==(const Constructable& rhs) const { |
| 135 | return this->get_value() == rhs.get_value(); |
| 136 | } |
| 137 | |
| 138 | bool operator!=(const Constructable& rhs) const { |
| 139 | return this->get_value() != rhs.get_value(); |