2
0
mirror of https://github.com/boostorg/python.git synced 2026-01-20 04:42:28 +00:00

merged from trunk

[SVN r31808]
This commit is contained in:
Dave Abrahams
2005-11-28 21:14:32 +00:00
parent 00582713d5
commit 8367e1d366

View File

@@ -21,6 +21,14 @@
# ifdef BOOST_PYTHON_HAVE_GCC_CP_DEMANGLE
# if defined(__GNUC__) && __GNUC__ >= 3
// http://lists.debian.org/debian-gcc/2003/09/msg00055.html notes
// that, in cxxabi.h of gcc-3.x for x < 4, this type is used before it
// is declared.
# if __GNUC__ == 3 && __GNUC_MINOR < 4
class __class_type_info
# endif
# include <cxxabi.h>
# endif
# endif