Paolo Carlini - [v3] Qualify a call (original) (raw)
This is the mail archive of the gcc-patches@gcc.gnu.orgmailing list for the GCC project.
Index Nav: | [Date Index] [Subject Index] [Author Index] [Thread Index] | |
---|---|---|
Message Nav: | [Date Prev] [Date Next] | [Thread Prev] [Thread Next] |
Other format: | [Raw text] |
- From: Paolo Carlini
- To: "'gcc-patches at gcc dot gnu dot org'"
- Date: Mon, 05 Feb 2007 14:01:04 +0100
- Subject: [v3] Qualify a call
Hi,committed mainline and 4_2-branch.Paolo./////////////////
2007-02-05 Paolo Carlini pcarlini@suse.de
* include/bits/stl_deque.h (operator<): Qualify call.
Index: include/bits/stl_deque.h
--- include/bits/stl_deque.h (revision 121568) +++ include/bits/stl_deque.h (working copy) @@ -1566,8 +1566,8 @@ 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(),
/// Based on operator== template<typename _Tp, typename _Alloc>__y.begin(), __y.end()); }
Index Nav: | [Date Index] [Subject Index] [Author Index] [Thread Index] | |
---|---|---|
Message Nav: | [Date Prev] [Date Next] | [Thread Prev] [Thread Next] |