Revert "Add type traits 'is_signed_integral<>'"

This reverts commit f2c148efae.
This commit is contained in:
Po-Yen, Chen
2022-08-19 15:14:12 -04:00
parent 103ae7d126
commit 3b0f97f6eb

View File

@@ -57,13 +57,4 @@ __host__ __device__ constexpr Y bit_cast(const X& x)
#endif
}
template <typename T>
struct is_signed_integral
: public integral_constant<bool, std::is_signed_v<T> && std::is_integral_v<T>>
{
};
template <typename T>
inline constexpr bool is_signed_integral_v = is_signed_integral<T>::value;
} // namespace ck