A bit of type name mangling was left unmangled. Should be good now.

[SVN r59449]
This commit is contained in:
Emil Dotchevski
2010-02-03 20:17:01 +00:00
parent 2bbd6ae7b5
commit 37c31a6622

View File

@ -37,13 +37,13 @@ boost
template <class T> template <class T>
inline inline
char const * std::string
type_name() type_name()
{ {
#ifdef BOOST_NO_TYPEID #ifdef BOOST_NO_TYPEID
return BOOST_CURRENT_FUNCTION; return BOOST_CURRENT_FUNCTION;
#else #else
return typeid(T).name(); return units::detail::demangle(typeid(T).name());
#endif #endif
} }