|
ManaPlus
|
Go to the documentation of this file.
22 #ifndef UTILS_LIKELY_H
23 #define UTILS_LIKELY_H
26 #define A_LIKELY(x) __builtin_expect (!!(x), 1)
27 #define A_UNLIKELY(x) __builtin_expect (!!(x), 0)
29 #define A_LIKELY(x) (x)
30 #define A_UNLIKELY(x) (x)