summaryrefslogtreecommitdiff
path: root/src/cppunit
diff options
context:
space:
mode:
authorBaptiste Lepilleur <gaiacrtn@free.fr>2009-11-24 12:10:21 +0000
committerBaptiste Lepilleur <gaiacrtn@free.fr>2009-11-24 12:10:21 +0000
commitbe2c1fd6a39ad763b63c85f78b41b1358bf1c685 (patch)
tree4819143253ee13cb1a874883837f42761a515a33 /src/cppunit
parent2ad11a1f1a022f1fbaaf8deae64e9249cfc8fb4b (diff)
downloadcppunit-be2c1fd6a39ad763b63c85f78b41b1358bf1c685.tar.gz
Config/ax_cxx_gcc_abi_demangle.
config/ax_cxx_gcc_abi_demangle.m4: * src/cppunit/TypeInfoHelper.cpp: Fixed demangling of symbols on gcc 4.3 (bug #2796543).
Diffstat (limited to 'src/cppunit')
-rw-r--r--src/cppunit/TypeInfoHelper.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/cppunit/TypeInfoHelper.cpp b/src/cppunit/TypeInfoHelper.cpp
index bd01001..ff1d662 100644
--- a/src/cppunit/TypeInfoHelper.cpp
+++ b/src/cppunit/TypeInfoHelper.cpp
@@ -6,6 +6,7 @@
#include <string>
#if CPPUNIT_HAVE_GCC_ABI_DEMANGLE
+#include <malloc.h>
#include <cxxabi.h>
#endif