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:
parent
3bb6ebaada
commit
7375e1e987
1 changed files with 4 additions and 4 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue