Go to the documentation of this file.
3#ifndef DUNE_COMMON_UNUSED_HH
4#define DUNE_COMMON_UNUSED_HH
11#ifndef HAS_ATTRIBUTE_UNUSED
22# define DUNE_UNUSED _Pragma("GCC warning \"DUNE_UNUSED is deprecated\"") __attribute__((unused))
24# define DUNE_UNUSED _Pragma("message \"DUNE_UNUSED is deprecated\"") __attribute__((unused))
37#define DUNE_UNUSED_PARAMETER(parm) static_cast<void>(parm)