diff --git a/include/loki/TypeTraits.h b/include/loki/TypeTraits.h index b2499fa..1ace61d 100644 --- a/include/loki/TypeTraits.h +++ b/include/loki/TypeTraits.h @@ -93,18 +93,18 @@ namespace Loki namespace Private { #ifndef LOKI_DISABLE_TYPELIST_MACROS - typedef LOKI_TYPELIST_4(unsigned char, unsigned short int,unsigned int, unsigned long int) + typedef LOKI_TYPELIST_5(unsigned char, unsigned short int,unsigned int, unsigned long int, unsigned long long int) StdUnsignedInts; - typedef LOKI_TYPELIST_4(signed char, short int,int, long int) + typedef LOKI_TYPELIST_5(signed char, short int,int, long int, long long int) StdSignedInts; typedef LOKI_TYPELIST_3(bool, char, wchar_t) StdOtherInts; typedef LOKI_TYPELIST_3(float, double, long double) StdFloats; #else - typedef Loki::Seq::Type + typedef Loki::Seq::Type StdUnsignedInts; - typedef Loki::Seq::Type + typedef Loki::Seq::Type StdSignedInts; typedef Loki::Seq::Type StdOtherInts;