Commit 1444936f by Paolo Carlini Committed by Paolo Carlini

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
parent 583c0b05
2007-02-05 Paolo Carlini <pcarlini@suse.de>
* include/bits/stl_deque.h (operator<): Qualify call.
2007-02-02 Benjamin Kosnik <bkoz@redhat.com> 2007-02-02 Benjamin Kosnik <bkoz@redhat.com>
* include/bits/c++config: Consistent macro guards for config includes. * include/bits/c++config: Consistent macro guards for config includes.
......
...@@ -1566,8 +1566,8 @@ _GLIBCXX_BEGIN_NESTED_NAMESPACE(std, _GLIBCXX_STD) ...@@ -1566,8 +1566,8 @@ _GLIBCXX_BEGIN_NESTED_NAMESPACE(std, _GLIBCXX_STD)
inline bool inline bool
operator<(const deque<_Tp, _Alloc>& __x, operator<(const deque<_Tp, _Alloc>& __x,
const deque<_Tp, _Alloc>& __y) const deque<_Tp, _Alloc>& __y)
{ return lexicographical_compare(__x.begin(), __x.end(), { return std::lexicographical_compare(__x.begin(), __x.end(),
__y.begin(), __y.end()); } __y.begin(), __y.end()); }
/// Based on operator== /// Based on operator==
template<typename _Tp, typename _Alloc> template<typename _Tp, typename _Alloc>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment