From b175d4d6df8f1fc154b43dafd98f43014eeb886e Mon Sep 17 00:00:00 2001 From: Veselin Georgiev Date: Wed, 19 Sep 2012 16:53:09 +0000 Subject: [PATCH] VS 2002 also doesn't support long long natively (thanks to Andras Kenez for the pointer) git-svn-id: https://svn.code.sf.net/p/libcpuid/code/HEAD/libcpuid@109 3b4be424-7ac5-41d7-8526-f4ddcb85d872 --- libcpuid/libcpuid_types.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libcpuid/libcpuid_types.h b/libcpuid/libcpuid_types.h index c63180e..ecdd0d3 100644 --- a/libcpuid/libcpuid_types.h +++ b/libcpuid/libcpuid_types.h @@ -52,7 +52,7 @@ typedef signed char int8_t; typedef unsigned char uint8_t; typedef signed short int16_t; typedef unsigned short uint16_t; -#if (defined _MSC_VER) && (_MSC_VER <= 1200) +#if (defined _MSC_VER) && (_MSC_VER <= 1300) /* MSVC 6.0: no long longs ... */ typedef signed __int64 int64_t; typedef unsigned __int64 uint64_t;