[ox/std] Rename is_signed to is_signed_v

This commit is contained in:
2020-06-17 06:33:35 -05:00
parent a5b01bb0d7
commit 7b07edd9e4
2 changed files with 4 additions and 4 deletions

View File

@@ -89,7 +89,7 @@ template<typename T>
constexpr bool is_class_v = ox::is_class<T>();
template<typename T>
constexpr bool is_signed = ox::integral_constant<bool, T(-1) < T(0)>::value;
constexpr bool is_signed_v = ox::integral_constant<bool, T(-1) < T(0)>::value;
// enable_if ///////////////////////////////////////////////////////////////////