From 3bb6ebaadade888cd4329560fff2e5c16c1719e0 Mon Sep 17 00:00:00 2001 From: clitte_bbt Date: Tue, 17 Jul 2007 20:35:36 +0000 Subject: [PATCH] Adding 64 bits types to StdUnsignedInts and StdSignedInts typedefs. It allows ParameterType to be defined for 64bits integer types. git-svn-id: svn://svn.code.sf.net/p/loki-lib/code/trunk@832 7ec92016-0320-0410-acc4-a06ded1c099a --- include/loki/TypeTraits.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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;