Added BOOST_NO_CTYPE_FUNCTIONS fix for gcc 3.x

[SVN r12548]
This commit is contained in:
John Maddock
2002-01-29 12:56:11 +00:00
parent 0483b05a98
commit ed54a93299

View File

@@ -33,6 +33,14 @@
# define BOOST_HAS_LONG_LONG
#endif
// GCC 3.x will clean up all of those nasty macro definitions that
// BOOST_NO_CTYPE_FUNCTIONS is intended to help work around, so undefine
// it under GCC 3.x.
#if defined(__GNUC__) && (__GNUC__ >= 3) && defined(BOOST_NO_CTYPE_FUNCTIONS)
# undef BOOST_NO_CTYPE_FUNCTIONS
#endif
//
// Assume any extensions are in namespace std:: unless stated otherwise:
//