diff options
author | Chris Lattner <sabre@nondot.org> | 2003-07-25 17:33:45 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-07-25 17:33:45 +0000 |
commit | b1512d2a7a954d5c7ed7a3937d638f696a3e5116 (patch) | |
tree | a85b866e18dc161307de353366dc8af96897c5a0 /include/boost/config/compiler/gcc.hpp | |
parent | b5b3c6fc0147b2e59b45f7f2882c7c615bb765ae (diff) |
This header works with GCC 3.3
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7309 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/boost/config/compiler/gcc.hpp')
-rw-r--r-- | include/boost/config/compiler/gcc.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/boost/config/compiler/gcc.hpp b/include/boost/config/compiler/gcc.hpp index f8dc97f703..94b36fe8a1 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.2: -#if (__GNUC__ > 3) || ((__GNUC__ == 3) && (__GNUC_MINOR__ > 2)) +// last known and checked version is 3.3: +#if (__GNUC__ > 3) || ((__GNUC__ == 3) && (__GNUC_MINOR__ > 3)) # if defined(BOOST_ASSERT_CONFIG) # error "Unknown compiler version - please run the configure tests and report the results" # else |