LAMA
|
00001 00034 #ifndef LAMA_UNUSED_HPP_ 00035 #define LAMA_UNUSED_HPP_ 00036 00041 #ifdef UNUSED 00042 #elif defined(__GNUC__) 00043 # define UNUSED(x) UNUSED_ ## x __attribute__((unused)) 00044 #elif defined(__LCLINT__) 00045 # define UNUSED(x) /*@unused@*/ x 00046 #else 00047 # define UNUSED(x) x 00048 #endif 00049 00050 #endif // LAMA_UNUSED_HPP_