From b84f07248e355c804cb2af9eb0c7dd38bdd6935f Mon Sep 17 00:00:00 2001 From: Erik de Castro Lopo Date: Tue, 7 Jan 2014 21:10:08 +1100 Subject: [PATCH] compat.h : Simplify definition of FLAC__U64L. Patch-from: lvqcl --- include/share/compat.h | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/include/share/compat.h b/include/share/compat.h index a7447aa5..a17cc634 100644 --- a/include/share/compat.h +++ b/include/share/compat.h @@ -85,12 +85,7 @@ #define flac_restrict #endif -/* adjust for compilers that can't understand using LLU suffix for uint64_t literals */ -#ifdef _MSC_VER -#define FLAC__U64L(x) x -#else -#define FLAC__U64L(x) x##LLU -#endif +#define FLAC__U64L(x) x##ULL #if defined _MSC_VER || defined __BORLANDC__ || defined __MINGW32__ #define FLAC__STRNCASECMP strnicmp