aboutsummaryrefslogtreecommitdiff
path: root/include/boost/config/compiler/gcc.hpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2003-11-05 01:31:12 +0000
committerChris Lattner <sabre@nondot.org>2003-11-05 01:31:12 +0000
commit748b487ed236464b32d6896838137b5c679fa43f (patch)
tree599dce758ddcf17ba1def3c60c59986192e25aa8 /include/boost/config/compiler/gcc.hpp
parentb56a6bc96a483b47da71b24efaa4380d463bbe17 (diff)
This works with GCC 3.4 also
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9717 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/boost/config/compiler/gcc.hpp')
-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 94b36fe8a1..aed95465c9 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.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