MSVC's __int64 data type is only available when _INTEGRAL_MAX_BITS >= 64

This commit is contained in:
Yang Tse 2008-08-21 06:58:12 +00:00
parent 95cef39def
commit 4dbfc91e2b
3 changed files with 3 additions and 3 deletions

View file

@ -65,7 +65,7 @@
# define LONG_LONG_TYPE long long
# define HAVE_LONG_LONG_TYPE
#else
# if defined(_MSC_VER) && (_MSC_VER >= 900)
# if defined(_MSC_VER) && (_MSC_VER >= 900) && (_INTEGRAL_MAX_BITS >= 64)
# define LONG_LONG_TYPE __int64
# define HAVE_LONG_LONG_TYPE
# else