* tinfo.cc (operator==): Qualify type_info with std::.
From-SVN: r26736
This commit is contained in:
parent
2a5557ffd5
commit
63061bc6f5
@ -1,3 +1,7 @@
|
||||
1999-05-02 Martin von Löwis <loewis@informatik.hu-berlin.de>
|
||||
|
||||
* tinfo.cc (operator==): Qualify type_info with std::.
|
||||
|
||||
1999-05-02 Mark Mitchell <mark@codesourcery.com>
|
||||
|
||||
* cp-tree.h (lang_decl_flags): Remove comdat. Updated dummy.
|
||||
|
@ -40,8 +40,8 @@ std::type_info::
|
||||
{ }
|
||||
|
||||
// We can't rely on common symbols being shared between shared objects.
|
||||
bool type_info::
|
||||
operator== (const type_info& arg) const
|
||||
bool std::type_info::
|
||||
operator== (const std::type_info& arg) const
|
||||
{
|
||||
return (&arg == this) || (strcmp (name (), arg.name ()) == 0);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user