From 37c31a662227953ed984956aa7e5ea33a3949e58 Mon Sep 17 00:00:00 2001 From: Emil Dotchevski Date: Wed, 3 Feb 2010 20:17:01 +0000 Subject: [PATCH] A bit of type name mangling was left unmangled. Should be good now. [SVN r59449] --- include/boost/exception/detail/type_info.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/boost/exception/detail/type_info.hpp b/include/boost/exception/detail/type_info.hpp index 232f497..9ab1c57 100644 --- a/include/boost/exception/detail/type_info.hpp +++ b/include/boost/exception/detail/type_info.hpp @@ -37,13 +37,13 @@ boost template inline - char const * + std::string type_name() { #ifdef BOOST_NO_TYPEID return BOOST_CURRENT_FUNCTION; #else - return typeid(T).name(); + return units::detail::demangle(typeid(T).name()); #endif }