8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-23 22:03:03 +01:00

Compiler-specific check, not platform

This commit is contained in:
aafemt 2007-02-28 11:21:43 +00:00
parent 3669e74570
commit db4741113d

View File

@ -607,7 +607,7 @@ typedef unsigned __int64 UINT64;
not permit the LL suffix which some other platforms require, but it not permit the LL suffix which some other platforms require, but it
handles numbers up to the largest 64-bit integer correctly without such handles numbers up to the largest 64-bit integer correctly without such
a suffix, so the macro definition is trivial. */ a suffix, so the macro definition is trivial. */
#ifdef MINGW // needed for gcc 3.3.1 #ifdef __GNUC__ // needed for gcc 3.3.1
#define QUADCONST(n) (n##LL) #define QUADCONST(n) (n##LL)
#else #else
#define QUADCONST(n) (n) #define QUADCONST(n) (n)