* tinfo.cc (operator==): Qualify type_info with std::.

From-SVN: r26736
This commit is contained in:
Martin v. Löwis 1999-05-02 22:44:24 +00:00 committed by Martin v. Löwis
parent 2a5557ffd5
commit 63061bc6f5
2 changed files with 6 additions and 2 deletions

View File

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

View File

@ -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);
}