From c336e89e7284c01fb7810517b4e9ac013798989a Mon Sep 17 00:00:00 2001 From: Yuichi Nishiwaki Date: Tue, 11 Aug 2015 00:25:07 +0900 Subject: [PATCH] I dislike newlines --- extlib/benz/include/picrin/compat.h | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/extlib/benz/include/picrin/compat.h b/extlib/benz/include/picrin/compat.h index 37af607b..30af63b9 100644 --- a/extlib/benz/include/picrin/compat.h +++ b/extlib/benz/include/picrin/compat.h @@ -69,9 +69,7 @@ typedef unsigned long uint32_t; #endif #if __GNUC__ -# define GCC_VERSION (__GNUC__ * 10000 \ - + __GNUC_MINOR__ * 100 \ - + __GNUC_PATCHLEVEL__) +# define GCC_VERSION (__GNUC__ * 10000 + __GNUC_MINOR__ * 100 + __GNUC_PATCHLEVEL__) #endif #if GCC_VERSION >= 40500 || __clang__ # define PIC_UNREACHABLE() (__builtin_unreachable())