Overloaded operator for the is different condition
| 235 | |
| 236 | // Overloaded operator for the is different condition |
| 237 | RP3D_FORCE_INLINE bool Vector2::operator!= (const Vector2& vector) const { |
| 238 | return !(*this == vector); |
| 239 | } |
| 240 | |
| 241 | // Overloaded operator for addition with assignment |
| 242 | RP3D_FORCE_INLINE Vector2& Vector2::operator+=(const Vector2& vector) { |
nothing calls this directly
no outgoing calls
no test coverage detected