diff options
-rw-r--r-- | third_party/libwebp/webp/config.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/third_party/libwebp/webp/config.h b/third_party/libwebp/webp/config.h index 62ade94d2a..b01473c827 100644 --- a/third_party/libwebp/webp/config.h +++ b/third_party/libwebp/webp/config.h @@ -14,14 +14,14 @@ // file, which replaces the checks in endian_inl.h to decide whether we have // particular builtins. -#ifdef __builtin_bswap64(x) +#ifdef __builtin_bswap64 #define HAVE_BUILTIN_BSWAP64 #endif -#ifdef __builtin_bswap32(x) +#ifdef __builtin_bswap32 #define HAVE_BUILTIN_BSWAP32 #endif -#ifdef __builtin_bswap16(x) +#ifdef __builtin_bswap16 #define HAVE_BUILTIN_BSWAP16 #endif |