From: Chris Lattner Date: Tue, 17 Sep 2002 23:38:38 +0000 (+0000) Subject: Add support for gcc 3.2 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=b430e0b33dc4d8c410b1deb84305ecc3fb64c0fe;p=oota-llvm.git Add support for gcc 3.2 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3795 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/boost/config/compiler/gcc.hpp b/include/boost/config/compiler/gcc.hpp index e3c0324bad5..f8dc97f7036 100644 --- a/include/boost/config/compiler/gcc.hpp +++ b/include/boost/config/compiler/gcc.hpp @@ -49,8 +49,8 @@ # error "Compiler not configured - please reconfigure" #endif // -// last known and checked version is 3.1: -#if (__GNUC__ > 3) || ((__GNUC__ == 3) && (__GNUC_MINOR__ > 1)) +// last known and checked version is 3.2: +#if (__GNUC__ > 3) || ((__GNUC__ == 3) && (__GNUC_MINOR__ > 2)) # if defined(BOOST_ASSERT_CONFIG) # error "Unknown compiler version - please run the configure tests and report the results" # else