This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug c++/24939] operator< in middle of expression is parsed as template
- From: "pinskia at gcc dot gnu dot org" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: 19 Nov 2005 18:34:50 -0000
- Subject: [Bug c++/24939] operator< in middle of expression is parsed as template
- References: <bug-24939-6594@http.gcc.gnu.org/bugzilla/>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
------- Comment #4 from pinskia at gcc dot gnu dot org 2005-11-19 18:34 -------
Yep it is a dup:
template<typename T, template<typename>class al>
void slist<T, al>::merge(slist<T, al>& l) {
node_type* cursor = before_begin().iter;
while(cursor->next != nil && !l.empty()) {
if (l.head->val < cursor->next->val)
*** This bug has been marked as a duplicate of 20308 ***
--
pinskia at gcc dot gnu dot org changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |DUPLICATE
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=24939