mirror of
https://github.com/boostorg/exception.git
synced 2025-07-21 08:22:05 +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>
|
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
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user