mirror of
https://github.com/boostorg/exception.git
synced 2025-07-16 22:12:05 +02:00
minor boost/exception/detail/type_info.hpp fix.
[SVN r48579]
This commit is contained in:
@ -17,7 +17,11 @@ boost
|
|||||||
char const *
|
char const *
|
||||||
type_name()
|
type_name()
|
||||||
{
|
{
|
||||||
|
#ifdef BOOST_NO_TYPEID
|
||||||
return BOOST_CURRENT_FUNCTION;
|
return BOOST_CURRENT_FUNCTION;
|
||||||
|
#else
|
||||||
|
return typeid(T).name();
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
namespace
|
namespace
|
||||||
|
Reference in New Issue
Block a user