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>
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
}