| 339 | |
| 340 | template<class TL, class TR> |
| 341 | inline constexpr auto operator += (v_3d<TL>& lhs, const TR& rhs) |
| 342 | { |
| 343 | lhs = lhs + rhs; |
| 344 | return lhs; |
| 345 | } |
| 346 | |
| 347 | // Unary negation operator overoad for inverting a vector |
| 348 | template<class T> |
nothing calls this directly
no outgoing calls
no test coverage detected