OSDN Git Service

2007-02-05 Paolo Carlini <pcarlini@suse.de>
authorpaolo <paolo@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 5 Feb 2007 12:58:12 +0000 (12:58 +0000)
committerpaolo <paolo@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 5 Feb 2007 12:58:12 +0000 (12:58 +0000)
* include/bits/stl_deque.h (operator<): Qualify call.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@121597 138bc75d-0d04-0410-961f-82ee72b054a4

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

index 4af5787..bad5280 100644 (file)
@@ -1,3 +1,7 @@
+2007-02-05  Paolo Carlini  <pcarlini@suse.de>
+
+       * include/bits/stl_deque.h (operator<): Qualify call.
+
 2007-02-02  Benjamin Kosnik  <bkoz@redhat.com>
 
        * include/bits/c++config: Consistent macro guards for config includes.
index 03cda69..9da0bb7 100644 (file)
@@ -1566,8 +1566,8 @@ _GLIBCXX_BEGIN_NESTED_NAMESPACE(std, _GLIBCXX_STD)
     inline bool
     operator<(const deque<_Tp, _Alloc>& __x,
              const deque<_Tp, _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()); }
 
   /// Based on operator==
   template<typename _Tp, typename _Alloc>