| 403 | |
| 404 | template<class TL, class TR> |
| 405 | inline constexpr auto operator /= (v_2d<TL>& lhs, const TR& rhs) |
| 406 | { |
| 407 | lhs = lhs / rhs; |
| 408 | return lhs; |
| 409 | } |
| 410 | |
| 411 | // Unary Addition operator (pointless but i like the platinum trophies) |
| 412 | template<class T> |
nothing calls this directly
no outgoing calls
no test coverage detected