summaryrefslogtreecommitdiffstats
path: root/src/common/vector_math.h
diff options
context:
space:
mode:
authorSubv <subv2112@gmail.com>2017-06-11 18:55:35 +0200
committerwwylele <wwylele@gmail.com>2017-07-11 18:39:15 +0200
commit73566ff7a990cdfe8d8f023997b57942dc785fc4 (patch)
treeba42cbed66eeb4cd08012181f774a8633b9c2120 /src/common/vector_math.h
parentSwRasterizer: Corrected the light LUT lookups. (diff)
downloadyuzu-73566ff7a990cdfe8d8f023997b57942dc785fc4.tar
yuzu-73566ff7a990cdfe8d8f023997b57942dc785fc4.tar.gz
yuzu-73566ff7a990cdfe8d8f023997b57942dc785fc4.tar.bz2
yuzu-73566ff7a990cdfe8d8f023997b57942dc785fc4.tar.lz
yuzu-73566ff7a990cdfe8d8f023997b57942dc785fc4.tar.xz
yuzu-73566ff7a990cdfe8d8f023997b57942dc785fc4.tar.zst
yuzu-73566ff7a990cdfe8d8f023997b57942dc785fc4.zip
Diffstat (limited to 'src/common/vector_math.h')
-rw-r--r--src/common/vector_math.h2
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);
}