| 33 | } |
| 34 | |
| 35 | constexpr bool operator==(const ::Vector3& other) const { return x == other.x && y == other.y && z == other.z; } |
| 36 | |
| 37 | constexpr bool operator!=(const ::Vector3& other) const { return !(*this == other); } |
| 38 |
nothing calls this directly
no outgoing calls
no test coverage detected