From 7ce2b632f51292c26014ad2efeb4b5429c3bf04f Mon Sep 17 00:00:00 2001 From: Chris Robinson Date: Tue, 28 May 2019 08:49:53 -0700 Subject: [PATCH] Simplify template type requirement checking --- common/albyte.h | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/common/albyte.h b/common/albyte.h index f9230005..d1459e96 100644 --- a/common/albyte.h +++ b/common/albyte.h @@ -11,20 +11,22 @@ namespace al { */ enum class byte : unsigned char { }; -template::value,int>::type = 0> +#define REQUIRES(...) typename std::enable_if<(__VA_ARGS__),int>::type = 0 + +template::value)> inline constexpr T to_integer(al::byte b) noexcept { return T(b); } -template::value,int>::type = 0> +template::value)> inline constexpr al::byte operator<<(al::byte lhs, T rhs) noexcept { return al::byte(to_integer(lhs) << rhs); } -template::value,int>::type = 0> +template::value)> inline constexpr al::byte operator>>(al::byte lhs, T rhs) noexcept { return al::byte(to_integer(lhs) >> rhs); } #define AL_DECL_OP(op) \ -template::value,int>::type = 0> \ +template::value)> \ inline constexpr al::byte operator op (al::byte lhs, T rhs) noexcept \ { return al::byte(to_integer(lhs) op rhs); } \ inline constexpr al::byte operator op (al::byte lhs, al::byte rhs) noexcept \ @@ -40,16 +42,16 @@ inline constexpr al::byte operator~(al::byte b) noexcept { return al::byte(~to_integer(b)); } -template::value,int>::type = 0> +template::value)> inline al::byte& operator<<=(al::byte &lhs, T rhs) noexcept { lhs = lhs << rhs; return lhs; } -template::value,int>::type = 0> +template::value)> inline al::byte& operator>>=(al::byte &lhs, T rhs) noexcept { lhs = lhs >> rhs; return lhs; } #define AL_DECL_OP(op) \ -template::value,int>::type = 0> \ +template::value)> \ inline al::byte& operator op##= (al::byte &lhs, T rhs) noexcept \ { lhs = lhs op rhs; return lhs; } \ inline al::byte& operator op##= (al::byte &lhs, al::byte rhs) noexcept \ @@ -61,6 +63,8 @@ AL_DECL_OP(^) #undef AL_DECL_OP +#undef REQUIRES + } // namespace al #endif /* AL_BYTE_H */