diff options
author | wwylele <wwylele@gmail.com> | 2017-07-11 20:08:56 +0300 |
---|---|---|
committer | wwylele <wwylele@gmail.com> | 2017-07-11 20:08:56 +0300 |
commit | fe44e843fe1e300491d3bcd9072948407a86e7e1 (patch) | |
tree | c1f4beceaf37c60bd4dc6f4b736b155e6285c1b1 /src/common/vector_math.h | |
parent | efc655aec00d43d53c41b55d9a94d17ce81e5942 (diff) |
vector_math: remove dead template parameter
Diffstat (limited to 'src/common/vector_math.h')
-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 49ae87f6d1..6e2a5ad601 100644 --- a/src/common/vector_math.h +++ b/src/common/vector_math.h @@ -461,7 +461,7 @@ public: z -= other.z; w -= other.w; } - template <typename Q = T> + Vec4<decltype(-T{})> operator-() const { return MakeVec(-x, -y, -z, -w); } |