tinfo.cc (type_info::operator==): Test __name instead of name().
2011-09-27 Marcus Shawcroft <marcus.shawcroft@arm.com> * libsupc++/tinfo.cc (type_info::operator==): Test __name instead of name(). From-SVN: r179236
This commit is contained in:
parent
f14e02622f
commit
16fa5e238a
|
@ -1,3 +1,8 @@
|
|||
2011-09-27 Marcus Shawcroft <marcus.shawcroft@arm.com>
|
||||
|
||||
* libsupc++/tinfo.cc (type_info::operator==): Test __name instead
|
||||
of name().
|
||||
|
||||
2011-09-26 Paolo Carlini <paolo.carlini@oracle.com>
|
||||
|
||||
PR libstdc++/50529
|
||||
|
|
|
@ -41,8 +41,11 @@ operator== (const std::type_info& arg) const
|
|||
#if __GXX_MERGED_TYPEINFO_NAMES
|
||||
return name () == arg.name ();
|
||||
#else
|
||||
/* The name() method will strip any leading '*' prefix. Therefore
|
||||
take care to look at __name rather than name() when looking for
|
||||
the "pointer" prefix. */
|
||||
return (&arg == this)
|
||||
|| (name ()[0] != '*' && (__builtin_strcmp (name (), arg.name ()) == 0));
|
||||
|| (__name[0] != '*' && (__builtin_strcmp (name (), arg.name ()) == 0));
|
||||
#endif
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue