From 8367e1d366c059bc16bbef98624c6024f858abff Mon Sep 17 00:00:00 2001 From: Dave Abrahams Date: Mon, 28 Nov 2005 21:14:32 +0000 Subject: [PATCH] merged from trunk [SVN r31808] --- src/converter/type_id.cpp | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/converter/type_id.cpp b/src/converter/type_id.cpp index 39db65d9..940bd302 100644 --- a/src/converter/type_id.cpp +++ b/src/converter/type_id.cpp @@ -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 # endif # endif