stl_deque.h (operator<): Qualify call.

2007-02-05  Paolo Carlini  <pcarlini@suse.de>

	* include/bits/stl_deque.h (operator<): Qualify call.

From-SVN: r121597
This commit is contained in:
Paolo Carlini 2007-02-05 12:58:12 +00:00 committed by Paolo Carlini
parent 583c0b0549
commit 1444936f04
2 changed files with 6 additions and 2 deletions

View 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.

View 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>