| 47 | IntValue& operator=(IntValue&&) = default; |
| 48 | |
| 49 | int value() const { return *value_; } |
| 50 | |
| 51 | bool operator==(const IntValue& other) const { return *value_ == *other.value_; } |
| 52 | bool operator!=(const IntValue& other) const { return *value_ != *other.value_; } |
no outgoing calls
no test coverage detected