00001 /* $Id$ */ 00021 #ifndef CXXUTILS_UNUSED_H 00022 #define CXXUTILS_UNUSED_H 00023 00024 00025 #ifdef __GNUC__ 00026 # define UNUSED(v) v __attribute__((unused)) 00027 #else 00028 # define UNUSED(v) v 00029 #endif 00030 00031 00032 #endif /* not CXXUTILS_UNUSED_H */