Overloaded operator for the is different condition
| 299 | |
| 300 | // Overloaded operator for the is different condition |
| 301 | RP3D_FORCE_INLINE bool Matrix2x2::operator!= (const Matrix2x2& matrix) const { |
| 302 | return !(*this == matrix); |
| 303 | } |
| 304 | |
| 305 | // Overloaded operator for addition with assignment |
| 306 | RP3D_FORCE_INLINE Matrix2x2& Matrix2x2::operator+=(const Matrix2x2& matrix) { |
nothing calls this directly
no outgoing calls
no test coverage detected