]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
stl_tree.h: Add a few missing std:: qualifications.
authorPaolo Carlini <pcarlini@suse.de>
Tue, 18 Jan 2005 16:52:53 +0000 (16:52 +0000)
committerPaolo Carlini <paolo@gcc.gnu.org>
Tue, 18 Jan 2005 16:52:53 +0000 (16:52 +0000)
2005-01-18  Paolo Carlini  <pcarlini@suse.de>

* include/bits/stl_tree.h: Add a few missing std:: qualifications.

From-SVN: r93836

libstdc++-v3/ChangeLog
libstdc++-v3/include/bits/stl_tree.h

index 3a32cb451f78cf6c43273b68231a28effaf80375..3ba85e2ab2816132e4fd613a0cbf41f9ed5666fb 100644 (file)
@@ -1,3 +1,7 @@
+2005-01-18  Paolo Carlini  <pcarlini@suse.de>
+
+       * include/bits/stl_tree.h: Add a few missing std:: qualifications.
+
 2005-01-16  Jonathan Wakely  <redi@gcc.gnu.org>
 
        * include/ext/rope: Qualify calls to std::copy() by sequence_buffer.
index ac9add899b925afe29b511504aead724eed4219e..6001a3173d58f5671bb6bef76d76031a5fd49197 100644 (file)
@@ -1,6 +1,6 @@
 // RB tree implementation -*- C++ -*-
 
-// Copyright (C) 2001, 2002, 2003, 2004 Free Software Foundation, Inc.
+// Copyright (C) 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
 //
 // This file is part of the GNU ISO C++ Library.  This library is free
 // software; you can redistribute it and/or modify it under the
@@ -702,7 +702,7 @@ namespace std
               const _Rb_tree<_Key,_Val,_KeyOfValue,_Compare,_Alloc>& __y)
     {
       return __x.size() == __y.size()
-            && equal(__x.begin(), __x.end(), __y.begin());
+            && std::equal(__x.begin(), __x.end(), __y.begin());
     }
 
   template<typename _Key, typename _Val, typename _KeyOfValue,
@@ -711,8 +711,8 @@ namespace std
     operator<(const _Rb_tree<_Key,_Val,_KeyOfValue,_Compare,_Alloc>& __x,
              const _Rb_tree<_Key,_Val,_KeyOfValue,_Compare,_Alloc>& __y)
     {
-      return lexicographical_compare(__x.begin(), __x.end(), 
-                                    __y.begin(), __y.end());
+      return std::lexicographical_compare(__x.begin(), __x.end(), 
+                                         __y.begin(), __y.end());
     }
 
   template<typename _Key, typename _Val, typename _KeyOfValue,