Added fix for gcc bug in 3.1 and 3.2 versions.

[SVN r19400]
This commit is contained in:
John Maddock
2003-08-02 11:52:32 +00:00
parent bbbb8297ea
commit d8741215a5

View File

@ -36,6 +36,13 @@
# define BOOST_NO_EXCEPTIONS # define BOOST_NO_EXCEPTIONS
#endif #endif
//
// Bug specific to gcc 3.1 and 3.2:
//
#if (__GNUC__ == 3) && ((__GNUC_MINOR__ == 1) || (__GNUC_MINOR__ == 2))
# define BOOST_NO_EXPLICIT_FUNCTION_TEMPLATE_ARGUMENTS
#endif
// //
// Threading support: Turn this on unconditionally here (except for // Threading support: Turn this on unconditionally here (except for
// those platforms where we can know for sure). It will get turned off again // those platforms where we can know for sure). It will get turned off again