diff --git a/global.h b/global.h index 4724f6b..889959e 100644 --- a/global.h +++ b/global.h @@ -74,16 +74,6 @@ constexpr inline T operator ^ (T lhs, T rhs) return static_cast(static_cast(lhs) ^ static_cast(rhs)); } -template -constexpr inline bool operator ! (T lhs) -{ - - static_assert(std::is_enum::value, - "template parameter is not an enum type"); - - return !static_cast(lhs); -} - // TO DO need to testing. I am think this is does not work. //template