Skip to content
Snippets Groups Projects
Commit 3ef26b44 authored by Jan Trávníček's avatar Jan Trávníček
Browse files

print demangled names of type_index and type_info

parent b68f482f
No related branches found
No related tags found
No related merge requests found
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
namespace std { namespace std {
   
std::ostream & operator << ( std::ostream & os, const std::type_index & type ) { std::ostream & operator << ( std::ostream & os, const std::type_index & type ) {
os << type.name ( ); os << type_name ( type );
return os; return os;
} }
   
......
...@@ -16,7 +16,7 @@ namespace std { ...@@ -16,7 +16,7 @@ namespace std {
} }
   
std::ostream & operator << ( std::ostream & os, const std::type_info & type ) { std::ostream & operator << ( std::ostream & os, const std::type_info & type ) {
os << type.name ( ); os << type_name ( type );
return os; return os;
} }
   
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment