Commit 63061bc6 by Martin v. Löwis Committed by Martin v. Löwis

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

From-SVN: r26736
parent 2a5557ff
1999-05-02 Martin von Lwis <loewis@informatik.hu-berlin.de>
* tinfo.cc (operator==): Qualify type_info with std::.
1999-05-02 Mark Mitchell <mark@codesourcery.com> 1999-05-02 Mark Mitchell <mark@codesourcery.com>
* cp-tree.h (lang_decl_flags): Remove comdat. Updated dummy. * cp-tree.h (lang_decl_flags): Remove comdat. Updated dummy.
......
...@@ -40,8 +40,8 @@ std::type_info:: ...@@ -40,8 +40,8 @@ std::type_info::
{ } { }
// We can't rely on common symbols being shared between shared objects. // We can't rely on common symbols being shared between shared objects.
bool type_info:: bool std::type_info::
operator== (const type_info& arg) const operator== (const std::type_info& arg) const
{ {
return (&arg == this) || (strcmp (name (), arg.name ()) == 0); return (&arg == this) || (strcmp (name (), arg.name ()) == 0);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment