 |
Version: SMASH-1.5.1
|
|
Go to the documentation of this file. 5 #ifndef SRC_INCLUDE_MACROS_H_ 6 #define SRC_INCLUDE_MACROS_H_ 10 #define likely(x) __builtin_expect((x), 1) 11 #define unlikely(x) __builtin_expect((x), 0) 15 #define unlikely(x) (x) 24 #define SMASH_UNUSED(x) (void)(x) 27 #define SMASH_DEPRECATED(msg) __attribute__((deprecated(msg))) 29 #endif // SRC_INCLUDE_MACROS_H_