| 7 | |
| 8 | |
| 9 | bool operator==(const Vec2& lhs, const Vec2& rhs) { |
| 10 | return lhs.x == rhs.x && |
| 11 | lhs.y == rhs.y; |
| 12 | } |
| 13 | |
| 14 | bool operator!=(const Vec2& lhs, const Vec2& rhs) { |
| 15 | return !(lhs == rhs); |
nothing calls this directly
no outgoing calls
no test coverage detected