From cc6d30dccfde4d7e24e18d9e6a0356f9cd052e44 Mon Sep 17 00:00:00 2001 From: Andreas Lauser <and@poware.org> Date: Thu, 3 Feb 2011 13:37:33 +0000 Subject: [PATCH] disable valgrind client requests and static asserts for gcc < 4.5 instead of gcc < 4.4 git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@5166 2fb0f335-1f38-0410-981e-8018bf24f1b0 --- dumux/common/valgrind.hh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dumux/common/valgrind.hh b/dumux/common/valgrind.hh index 87c34bc8c6..e4073a8ce7 100644 --- a/dumux/common/valgrind.hh +++ b/dumux/common/valgrind.hh @@ -30,12 +30,12 @@ #define HAVE_VALGRIND 0 #endif -#if __GNUC__ < 4 || (__GNUC__ == 4 && __GNUC_MINOR__ < 4) -// do not do static_asserts for gcc < 4.4 (semantics changed, so old +#if __GNUC__ < 4 || (__GNUC__ == 4 && __GNUC_MINOR__ < 5) +// do not do static_asserts for gcc < 4.5 (semantics changed, so old // GCCs will complain when using static_assert) #define static_assert(a, b) -// do not do valgrind client requests for gcc < 4.4 (old GCCs do not +// do not do valgrind client requests for gcc < 4.5 (old GCCs do not // support anonymous template arguments which results in errors inside // the BoundaryTypes class) #define SetUndefined(a) foo(); -- GitLab