| 15 | } |
| 16 | |
| 17 | inline vector2i_t operator- (const vector2i_t& l, const vector2i_t& r){ |
| 18 | return {l.x - r.x, l.y - r.y}; |
| 19 | } |
| 20 | |
| 21 | inline void operator-= (vector2i_t& l, const vector2i_t& r){ |
| 22 | l = l - r; |
nothing calls this directly
no outgoing calls
no test coverage detected