diff options
author | Martin Storsjo <martin@martin.st> | 2012-07-06 17:14:12 +0300 |
---|---|---|
committer | Martin Storsjo <martin@martin.st> | 2012-07-12 17:06:45 +0300 |
commit | 52396724f8285d099dcdba131b751ffe5417a283 (patch) | |
tree | 28b49a23109223b38aeaba80fd92832ea255a131 /libSYS/include | |
parent | 2228e360595641dd906bf1773307f43d304f5b2e (diff) | |
download | ODR-AudioEnc-52396724f8285d099dcdba131b751ffe5417a283.tar.gz ODR-AudioEnc-52396724f8285d099dcdba131b751ffe5417a283.tar.bz2 ODR-AudioEnc-52396724f8285d099dcdba131b751ffe5417a283.zip |
Only use __int64 on MSVC, not on all win32 compilers
Mingw32 doesn't define the __int64 types.
Change-Id: Ia45add37be1bf85abde664fd6e382334a6bb4498
Diffstat (limited to 'libSYS/include')
-rw-r--r-- | libSYS/include/machine_type.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libSYS/include/machine_type.h b/libSYS/include/machine_type.h index b5642b2..d04a8e8 100644 --- a/libSYS/include/machine_type.h +++ b/libSYS/include/machine_type.h @@ -173,7 +173,7 @@ amm-info@iis.fraunhofer.de /* Define 64 bit base integer type. */ -#ifdef _WIN32 +#ifdef _MSC_VER typedef __int64 INT64; typedef unsigned __int64 UINT64; #else |