minor boost/exception/detail/type_info.hpp fix.

[SVN r48579]
This commit is contained in:
Emil Dotchevski
2008-09-04 19:36:34 +00:00
parent 783a0530ba
commit fc101598ba

View File

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