| 7 | } vector2i_t; // Two dimensional integer vector |
| 8 | |
| 9 | inline vector2i_t operator+ (const vector2i_t& l, const vector2i_t& r){ |
| 10 | return {l.x + r.x, l.y + r.y}; |
| 11 | } |
| 12 | |
| 13 | inline void operator+= (vector2i_t& l, const vector2i_t& r){ |
| 14 | l = l + r; |
nothing calls this directly
no outgoing calls
no test coverage detected