Fix unterminated #if (pointy hat to me ^^)

This commit is contained in:
rconty@il4p.fr
2011-10-17 15:18:06 +00:00
parent 21678c9260
commit a895841b09
2 changed files with 9 additions and 6 deletions

View File

@@ -142,12 +142,13 @@
# define GCC_VERSION (__GNUC__ * 100 + __GNUC_MINOR__ * 10)
# if GCC_VERSION >= 430
// Since GCC >= 4.30, GCC provides __builtin_bswapXX() alternatives so we switch to them
# undef bswap_16
# define bswap_16 __builtin_bswap16
# undef bswap_32
# define bswap_32 __builtin_bswap32
# undef bswap_64
# define bswap_64 __builtin_bswap64
# undef bswap_16
# define bswap_16 __builtin_bswap16
# undef bswap_32
# define bswap_32 __builtin_bswap32
# undef bswap_64
# define bswap_64 __builtin_bswap64
# endif
#endif
// Fallback...