long long is not a standard type

git-svn-id: svn://svn.code.sf.net/p/loki-lib/code/trunk@833 7ec92016-0320-0410-acc4-a06ded1c099a
This commit is contained in:
syntheticpp 2007-08-02 19:33:26 +00:00
parent 3bb6ebaada
commit 7375e1e987

View file

@ -93,18 +93,18 @@ namespace Loki
namespace Private
{
#ifndef LOKI_DISABLE_TYPELIST_MACROS
typedef LOKI_TYPELIST_5(unsigned char, unsigned short int,unsigned int, unsigned long int, unsigned long long int)
typedef LOKI_TYPELIST_5(unsigned char, unsigned short int,unsigned int, unsigned long int)
StdUnsignedInts;
typedef LOKI_TYPELIST_5(signed char, short int,int, long int, long long int)
typedef LOKI_TYPELIST_5(signed char, short int,int, 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<unsigned char, unsigned short int,unsigned int, unsigned long int, unsigned long long int>::Type
typedef Loki::Seq<unsigned char, unsigned short int,unsigned int, unsigned long int>::Type
StdUnsignedInts;
typedef Loki::Seq<signed char, short int,int, long int, long long int>::Type
typedef Loki::Seq<signed char, short int,int, long int>::Type
StdSignedInts;
typedef Loki::Seq<bool, char, wchar_t>::Type
StdOtherInts;