diff options
| -rw-r--r-- | src/macro.h | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/src/macro.h b/src/macro.h index c57c922..b0ff940 100644 --- a/src/macro.h +++ b/src/macro.h @@ -28,7 +28,7 @@  #error "Please include config.h before including this file!"  #endif -#ifdef __GNUC__ +#if __GNUC__ >= 2  #define CA_LIKELY(x) (__builtin_expect(!!(x),1))  #define CA_UNLIKELY(x) (__builtin_expect((x),0))  #else | 
