From b2698073d876667008e21a15c5bd19ae764cd657 Mon Sep 17 00:00:00 2001 From: Beman Dawes Date: Mon, 19 Mar 2001 20:26:33 +0000 Subject: [PATCH] __GNUC_MINOR__ 95 ---> 97 changes from n becker [SVN r9591] --- include/boost/config.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/boost/config.hpp b/include/boost/config.hpp index 086dcaa2..1ee77006 100644 --- a/include/boost/config.hpp +++ b/include/boost/config.hpp @@ -235,7 +235,7 @@ // egcs 1.1 won't parse smart_ptr.hpp without this: # define BOOST_NO_AUTO_PTR # endif -# if __GNUC__ == 2 && __GNUC_MINOR__ <= 95 +# if __GNUC__ == 2 && __GNUC_MINOR__ <= 97 # include // not sure this is the right way to do this -JGS # if !defined(_CXXRT_STD) && !defined(__SGI_STL) // need to ask Dietmar about this -JGS # define BOOST_NO_STD_ITERATOR @@ -250,7 +250,7 @@ # if __GNUC__ == 2 && __GNUC_MINOR__ <= 8 # define BOOST_NO_MEMBER_TEMPLATES # endif -# if (__GNUC__ == 2 && __GNUC_MINOR__ > 95) || __GNUC__ > 2 +# if (__GNUC__ == 2 && __GNUC_MINOR__ > 97) || __GNUC__ > 2 // upcoming gcc 3.0 # include # if defined(__GLIBCPP__)