From e3b7e9034b1442b5ab73b8a9a3de934f75342052 Mon Sep 17 00:00:00 2001 From: John Maddock Date: Mon, 5 Jan 2004 12:05:07 +0000 Subject: [PATCH] Updated version check to gcc3.4 [SVN r21495] --- include/boost/config/compiler/gcc.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/boost/config/compiler/gcc.hpp b/include/boost/config/compiler/gcc.hpp index 65378a19..4dc3f608 100644 --- a/include/boost/config/compiler/gcc.hpp +++ b/include/boost/config/compiler/gcc.hpp @@ -84,8 +84,8 @@ # error "Compiler not configured - please reconfigure" #endif // -// last known and checked version is 3.3: -#if (__GNUC__ > 3) || ((__GNUC__ == 3) && (__GNUC_MINOR__ > 3)) +// last known and checked version is 3.4: +#if (__GNUC__ > 3) || ((__GNUC__ == 3) && (__GNUC_MINOR__ > 4)) # if defined(BOOST_ASSERT_CONFIG) # error "Unknown compiler version - please run the configure tests and report the results" # else