| 793 | |
| 794 | template<class TL, class TR> |
| 795 | inline constexpr auto operator *= (v_2d<TL>& lhs, const TR& rhs) |
| 796 | { |
| 797 | lhs = lhs * rhs; |
| 798 | return lhs; |
| 799 | } |
| 800 | |
| 801 | // Division operator overloads between vectors and scalars, and vectors and vectors |
| 802 | template<class TL, class TR> |
nothing calls this directly
no outgoing calls
no test coverage detected