diff --git a/include/bx/inline/typetraits.inl b/include/bx/inline/typetraits.inl index 232c4f7..c9d6e89 100644 --- a/include/bx/inline/typetraits.inl +++ b/include/bx/inline/typetraits.inl @@ -35,13 +35,13 @@ namespace bx template using TypeIdentityType = typename TypeIdentityT::Type; //--- - template struct ConditionalT { using type = Ty; }; - template< typename Ty, typename Uy> struct ConditionalT { using type = Uy; }; + template struct ConditionalT { using Type = Ty; }; + template< typename Ty, typename Uy> struct ConditionalT { using Type = Uy; }; template using ConditionalType = typename ConditionalT::Type; //--- template struct EnableIfT { }; - template< typename Ty > struct EnableIfT { using type = Ty; }; + template< typename Ty > struct EnableIfT { using Type = Ty; }; template using EnableIfType = typename EnableIfT::Type; //---