* tinfo.cc (operator==): Qualify type_info with std::.
authorMartin v. Löwis <loewis@informatik.hu-berlin.de>
Sun, 2 May 1999 22:44:24 +0000 (22:44 +0000)
committerMartin v. Löwis <loewis@gcc.gnu.org>
Sun, 2 May 1999 22:44:24 +0000 (22:44 +0000)
From-SVN: r26736

gcc/cp/ChangeLog
gcc/cp/tinfo.cc

index c767fb37e25481bcdd587055359125ab120a11e2..f21d2b128ab9731c395b1308869b0b880e4f3041 100644 (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.
index 0d782ea375a9f37055dc0228c35767459b780f9a..5269cb5940e477b63974ac0493a098bef2d9c110 100644 (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);
 }