summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-08-08 23:30:40 -0400
committerGitHub <noreply@github.com>2018-08-08 23:30:40 -0400
commit5b1b758326485e8fe868d81f2e63ea1b66bd1efe (patch)
tree3f2f42a513eec4ee50fa0f4a2e1ec17b0d200f7c /src
parent25ba4d1b68b77d35db94a5f16e2f98b42be50370 (diff)
parentcc9d7bbf01c407a256436d57e2aca56b399b968a (diff)
Merge pull request #987 from lioncash/vec
vector_math: Use variable template version of is_signed in Vec classes
Diffstat (limited to 'src')
-rw-r--r--src/common/vector_math.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/common/vector_math.h b/src/common/vector_math.h
index 5c94fcda3..8feb49941 100644
--- a/src/common/vector_math.h
+++ b/src/common/vector_math.h
@@ -78,7 +78,7 @@ public:
}
template <typename U = T>
- constexpr Vec2<std::enable_if_t<std::is_signed<U>::value, U>> operator-() const {
+ constexpr Vec2<std::enable_if_t<std::is_signed_v<U>, U>> operator-() const {
return {-x, -y};
}
constexpr Vec2<decltype(T{} * T{})> operator*(const Vec2& other) const {
@@ -227,7 +227,7 @@ public:
}
template <typename U = T>
- constexpr Vec3<std::enable_if_t<std::is_signed<U>::value, U>> operator-() const {
+ constexpr Vec3<std::enable_if_t<std::is_signed_v<U>, U>> operator-() const {
return {-x, -y, -z};
}
@@ -436,7 +436,7 @@ public:
}
template <typename U = T>
- constexpr Vec4<std::enable_if_t<std::is_signed<U>::value, U>> operator-() const {
+ constexpr Vec4<std::enable_if_t<std::is_signed_v<U>, U>> operator-() const {
return {-x, -y, -z, -w};
}