diff options
| author | paolo <paolo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-02-05 12:58:12 +0000 |
|---|---|---|
| committer | paolo <paolo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-02-05 12:58:12 +0000 |
| commit | d62fcb86635718e9fcda4cdf94c38698e3cd222f (patch) | |
| tree | af4ca4334a335435f48073bae7aafab45463b2cb | |
| parent | 4595a3b391fe21e49b0214d68e8f622739b0517e (diff) | |
| download | ppe42-gcc-d62fcb86635718e9fcda4cdf94c38698e3cd222f.tar.gz ppe42-gcc-d62fcb86635718e9fcda4cdf94c38698e3cd222f.zip | |
2007-02-05 Paolo Carlini <pcarlini@suse.de>
* 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
| -rw-r--r-- | libstdc++-v3/ChangeLog | 4 | ||||
| -rw-r--r-- | libstdc++-v3/include/bits/stl_deque.h | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 4af578769cb..bad52803ef7 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -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. diff --git a/libstdc++-v3/include/bits/stl_deque.h b/libstdc++-v3/include/bits/stl_deque.h index 03cda6956ca..9da0bb7ea79 100644 --- a/libstdc++-v3/include/bits/stl_deque.h +++ b/libstdc++-v3/include/bits/stl_deque.h @@ -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> |

