From bdf9449784a1ddbd1e2ebb6743816e47bbae198a Mon Sep 17 00:00:00 2001 From: Andreas Lauser <and@poware.org> Date: Tue, 21 Feb 2012 17:31:47 +0000 Subject: [PATCH] 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 --- dumux/common/deprecated.hh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dumux/common/deprecated.hh b/dumux/common/deprecated.hh index 84e87b2a95..f200f6e89f 100644 --- a/dumux/common/deprecated.hh +++ b/dumux/common/deprecated.hh @@ -34,13 +34,13 @@ #if defined(DOXYGEN) || !HAVE_ATTRIBUTE_DEPRECATED //! Mark some entity as deprecated #define DUMUX_DEPRECATED -#else // defined(HAS_ATTRIBUTE_DEPRECATED) +#else #define DUMUX_DEPRECATED __attribute__((deprecated)) #endif #if defined(DOXYGEN) || !HAVE_ATTRIBUTE_DEPRECATED_MSG //! Mark some entity as deprecated -#define DUMUX_DEPRECATED_MSG(text) DUNE_DEPRECATED +#define DUMUX_DEPRECATED_MSG(text) DUMUX_DEPRECATED #else #define DUMUX_DEPRECATED_MSG(text) __attribute__((deprecated(text))) #endif -- GitLab