aboutsummaryrefslogtreecommitdiffstats
path: root/include/boost
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2002-09-17 23:38:38 +0000
committerChris Lattner <sabre@nondot.org>2002-09-17 23:38:38 +0000
commitb430e0b33dc4d8c410b1deb84305ecc3fb64c0fe (patch)
tree3e347d122536efd73f45b57c16f36e2782cec75b /include/boost
parentf1ffd99a755862794a257205aa7dcfd7d9647f99 (diff)
downloadexternal_llvm-b430e0b33dc4d8c410b1deb84305ecc3fb64c0fe.zip
external_llvm-b430e0b33dc4d8c410b1deb84305ecc3fb64c0fe.tar.gz
external_llvm-b430e0b33dc4d8c410b1deb84305ecc3fb64c0fe.tar.bz2
Add support for gcc 3.2
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3795 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/boost')
-rw-r--r--include/boost/config/compiler/gcc.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/boost/config/compiler/gcc.hpp b/include/boost/config/compiler/gcc.hpp
index e3c0324..f8dc97f 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