From 6da042cf97667306cb22de5b2971cc855522e705 Mon Sep 17 00:00:00 2001 From: Angus Leeming Date: Tue, 12 Jul 2005 10:51:13 +0000 Subject: [PATCH] Compile with gcc 4.0 without warnings. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/branches/BRANCH_1_3_X@10167 a592a061-630c-0410-9148-cb99ea01b6c8 --- boost/ChangeLog | 5 +++++ boost/boost/config/compiler/gcc.hpp | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/boost/ChangeLog b/boost/ChangeLog index 4bfc98d971..3b3ecb6fd4 100644 --- a/boost/ChangeLog +++ b/boost/ChangeLog @@ -1,3 +1,8 @@ +2005-07-12 Angus Leeming + + * boost/config/compiler/gcc.hpp allow to compile with gcc 4.0 + without warnings. + 2004-11-03 Jean-Marc Lasgouttes * boost/format/feed_args.hpp: do not use a static string (bug 1702) diff --git a/boost/boost/config/compiler/gcc.hpp b/boost/boost/config/compiler/gcc.hpp index aed95465c9..c516678e61 100644 --- a/boost/boost/config/compiler/gcc.hpp +++ b/boost/boost/config/compiler/gcc.hpp @@ -50,7 +50,7 @@ #endif // // last known and checked version is 3.4: -#if (__GNUC__ > 3) || ((__GNUC__ == 3) && (__GNUC_MINOR__ > 4)) +#if (__GNUC__ > 4) || ((__GNUC__ == 4) && (__GNUC_MINOR__ > 0)) # if defined(BOOST_ASSERT_CONFIG) # error "Unknown compiler version - please run the configure tests and report the results" # else