diff options
Diffstat (limited to 'src/common')
-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 c7a461a1e..d0fe0e405 100644 --- a/src/common/vector_math.h +++ b/src/common/vector_math.h @@ -462,7 +462,7 @@ public: z -= other.z; w -= other.w; } - template <typename Q = T, class = typename std::enable_if<std::is_signed<Q>::value>::type> + template <typename Q = T> Vec4<decltype(-T{})> operator-() const { return MakeVec(-x, -y, -z, -w); } |