diff options
| -rw-r--r-- | src/common/vector_math.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/vector_math.h b/src/common/vector_math.h index 49ae87f6d..6e2a5ad60 100644 --- a/src/common/vector_math.h +++ b/src/common/vector_math.h | |||
| @@ -461,7 +461,7 @@ public: | |||
| 461 | z -= other.z; | 461 | z -= other.z; |
| 462 | w -= other.w; | 462 | w -= other.w; |
| 463 | } | 463 | } |
| 464 | template <typename Q = T> | 464 | |
| 465 | Vec4<decltype(-T{})> operator-() const { | 465 | Vec4<decltype(-T{})> operator-() const { |
| 466 | return MakeVec(-x, -y, -z, -w); | 466 | return MakeVec(-x, -y, -z, -w); |
| 467 | } | 467 | } |