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