Looking at the C++ RTTI and type_info class sometimes I find the description of a method called raw_name() that is used to return the demangled name of a class. I cannot find any implementation in g++ but only the method name(). Do you know whether that is an implementation specific only for Visual Studio/MS and and whether is part of the C++ standard?
Looking at the C++ RTTI and type_info class sometimes I find the description of
Share
It is implementation specific,
type_infois defined in the standard at:C++03 Standard: 18.7.1 Class type_info:
As you see
raw_datais not a standard defined class member.