Go to the documentation of this file.
3 #ifndef DUNE_DEPRECATED_HH
4 #define DUNE_DEPRECATED_HH
13 #if defined(DOXYGEN) || !defined(HAS_ATTRIBUTE_DEPRECATED)
84 #define DUNE_DEPRECATED
85 #else // defined(HAS_ATTRIBUTE_DEPRECATED)
86 #define DUNE_DEPRECATED __attribute__((deprecated))
89 #if defined(DOXYGEN) || !defined(HAS_ATTRIBUTE_DEPRECATED_MSG)
169 #define DUNE_DEPRECATED_MSG(text) DUNE_DEPRECATED
170 #else // defined(HAS_ATTRIBUTE_DEPRECATED_MSG)
171 #define DUNE_DEPRECATED_MSG(text) __attribute__((deprecated(# text)))