| 819 | |
| 820 | template<class TL, class TR> |
| 821 | inline constexpr auto operator /= (v_2d<TL>& lhs, const TR& rhs) |
| 822 | { |
| 823 | lhs = lhs / rhs; |
| 824 | return lhs; |
| 825 | } |
| 826 | |
| 827 | // Unary Addition operator (pointless but i like the platinum trophies) |
| 828 | template<class T> |
nothing calls this directly
no outgoing calls
no test coverage detected