mirror of
https://github.com/boostorg/exception.git
synced 2025-07-21 00:12:07 +02:00
A bit of type name mangling was left unmangled. Should be good now.
[SVN r59449]
This commit is contained in:
@ -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
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user