forked from boostorg/config
Added fix for gcc bug in 3.1 and 3.2 versions.
[SVN r19400]
This commit is contained in:
@ -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
|
||||||
|
Reference in New Issue
Block a user