Skip to content
Snippets Groups Projects
Commit bdf94497 authored by Andreas Lauser's avatar Andreas Lauser
Browse files

deprecated.hh: fix typo

although, if you're unlucky, it worked anyway because the DUNE_DEPRECATED
macro might get defined before dumux/common/deprecated.hh gets included. that
would be pure unluck, though. I _love_ the autotools.

git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@7849 2fb0f335-1f38-0410-981e-8018bf24f1b0
parent f037638b
No related branches found
No related tags found
No related merge requests found
...@@ -34,13 +34,13 @@ ...@@ -34,13 +34,13 @@
#if defined(DOXYGEN) || !HAVE_ATTRIBUTE_DEPRECATED #if defined(DOXYGEN) || !HAVE_ATTRIBUTE_DEPRECATED
//! Mark some entity as deprecated //! Mark some entity as deprecated
#define DUMUX_DEPRECATED #define DUMUX_DEPRECATED
#else // defined(HAS_ATTRIBUTE_DEPRECATED) #else
#define DUMUX_DEPRECATED __attribute__((deprecated)) #define DUMUX_DEPRECATED __attribute__((deprecated))
#endif #endif
#if defined(DOXYGEN) || !HAVE_ATTRIBUTE_DEPRECATED_MSG #if defined(DOXYGEN) || !HAVE_ATTRIBUTE_DEPRECATED_MSG
//! Mark some entity as deprecated //! Mark some entity as deprecated
#define DUMUX_DEPRECATED_MSG(text) DUNE_DEPRECATED #define DUMUX_DEPRECATED_MSG(text) DUMUX_DEPRECATED
#else #else
#define DUMUX_DEPRECATED_MSG(text) __attribute__((deprecated(text))) #define DUMUX_DEPRECATED_MSG(text) __attribute__((deprecated(text)))
#endif #endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment