From 43f7a7692ac678c333ad05e57202425aa0700f2b Mon Sep 17 00:00:00 2001 From: Samy Al Bahra Date: Mon, 15 Jul 2013 21:16:56 -0400 Subject: [PATCH] ck_cc: Expand LIKELY/UNLIKELY on unsupport compilers. --- include/ck_cc.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/ck_cc.h b/include/ck_cc.h index 4c35e19..f41d901 100644 --- a/include/ck_cc.h +++ b/include/ck_cc.h @@ -78,11 +78,11 @@ #endif #ifndef CK_CC_LIKELY -#define CK_CC_LIKELY(x) +#define CK_CC_LIKELY(x) x #endif #ifndef CK_CC_UNLIKELY -#define CK_CC_UNLIKELY(x) +#define CK_CC_UNLIKELY(x) x #endif #endif /* _CK_CC_H */