00001
00002
00003 #ifndef DUNE_COMMON_UNUSED_HH
00004 #define DUNE_COMMON_UNUSED_HH
00005
00011 #ifndef HAS_ATTRIBUTE_UNUSED
00012 #define DUNE_UNUSED
00013 #else
00014 #define DUNE_UNUSED __attribute__((unused))
00015 #endif
00016
00018 #define DUNE_UNUSED_PARAMETER(parm) static_cast<void>(parm)
00019 #endif