public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/93614] C++ compile error with struct in template class and < operator
       [not found] <bug-93614-4@http.gcc.gnu.org/bugzilla/>
@ 2021-08-04 17:27 ` pinskia at gcc dot gnu.org
  2021-12-04 14:50 ` jakub at gcc dot gnu.org
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 5+ messages in thread
From: pinskia at gcc dot gnu.org @ 2021-08-04 17:27 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=93614

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
      Known to work|                            |11.1.0
      Known to fail|                            |10.3.0

--- Comment #3 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Seems fixed in GCC 11+.

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [Bug c++/93614] C++ compile error with struct in template class and < operator
       [not found] <bug-93614-4@http.gcc.gnu.org/bugzilla/>
  2021-08-04 17:27 ` [Bug c++/93614] C++ compile error with struct in template class and < operator pinskia at gcc dot gnu.org
@ 2021-12-04 14:50 ` jakub at gcc dot gnu.org
  2021-12-04 17:47 ` mpolacek at gcc dot gnu.org
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 5+ messages in thread
From: jakub at gcc dot gnu.org @ 2021-12-04 14:50 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=93614

Jakub Jelinek <jakub at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |mpolacek at gcc dot gnu.org

--- Comment #4 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
This is accepted since r11-86-gef3479afc5ab415f00a53fc6f6a990df7f6a0747
Dunno if the PR94799 testcases cover everything we want for the testsuite or if
we want this testcase too.

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [Bug c++/93614] C++ compile error with struct in template class and < operator
       [not found] <bug-93614-4@http.gcc.gnu.org/bugzilla/>
  2021-08-04 17:27 ` [Bug c++/93614] C++ compile error with struct in template class and < operator pinskia at gcc dot gnu.org
  2021-12-04 14:50 ` jakub at gcc dot gnu.org
@ 2021-12-04 17:47 ` mpolacek at gcc dot gnu.org
  2021-12-04 20:30 ` cvs-commit at gcc dot gnu.org
  2021-12-04 20:31 ` mpolacek at gcc dot gnu.org
  4 siblings, 0 replies; 5+ messages in thread
From: mpolacek at gcc dot gnu.org @ 2021-12-04 17:47 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=93614

Marek Polacek <mpolacek at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |ASSIGNED
     Ever confirmed|0                           |1
   Last reconfirmed|                            |2021-12-04
           Assignee|unassigned at gcc dot gnu.org      |mpolacek at gcc dot gnu.org

--- Comment #5 from Marek Polacek <mpolacek at gcc dot gnu.org> ---
I'll add it.

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [Bug c++/93614] C++ compile error with struct in template class and < operator
       [not found] <bug-93614-4@http.gcc.gnu.org/bugzilla/>
                   ` (2 preceding siblings ...)
  2021-12-04 17:47 ` mpolacek at gcc dot gnu.org
@ 2021-12-04 20:30 ` cvs-commit at gcc dot gnu.org
  2021-12-04 20:31 ` mpolacek at gcc dot gnu.org
  4 siblings, 0 replies; 5+ messages in thread
From: cvs-commit at gcc dot gnu.org @ 2021-12-04 20:30 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=93614

--- Comment #6 from CVS Commits <cvs-commit at gcc dot gnu.org> ---
The trunk branch has been updated by Marek Polacek <mpolacek@gcc.gnu.org>:

https://gcc.gnu.org/g:066b3258bb1494cf3b49b6ac26da38be01f7ad8e

commit r12-5794-g066b3258bb1494cf3b49b6ac26da38be01f7ad8e
Author: Marek Polacek <polacek@redhat.com>
Date:   Sat Dec 4 15:29:18 2021 -0500

    c++: Add fixed test [PR93614]

    This was fixed by r11-86.

            PR c++/93614

    gcc/testsuite/ChangeLog:

            * g++.dg/template/lookup18.C: New test.

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [Bug c++/93614] C++ compile error with struct in template class and < operator
       [not found] <bug-93614-4@http.gcc.gnu.org/bugzilla/>
                   ` (3 preceding siblings ...)
  2021-12-04 20:30 ` cvs-commit at gcc dot gnu.org
@ 2021-12-04 20:31 ` mpolacek at gcc dot gnu.org
  4 siblings, 0 replies; 5+ messages in thread
From: mpolacek at gcc dot gnu.org @ 2021-12-04 20:31 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=93614

Marek Polacek <mpolacek at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
         Resolution|---                         |FIXED
             Status|ASSIGNED                    |RESOLVED

--- Comment #7 from Marek Polacek <mpolacek at gcc dot gnu.org> ---
Done.

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2021-12-04 20:31 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <bug-93614-4@http.gcc.gnu.org/bugzilla/>
2021-08-04 17:27 ` [Bug c++/93614] C++ compile error with struct in template class and < operator pinskia at gcc dot gnu.org
2021-12-04 14:50 ` jakub at gcc dot gnu.org
2021-12-04 17:47 ` mpolacek at gcc dot gnu.org
2021-12-04 20:30 ` cvs-commit at gcc dot gnu.org
2021-12-04 20:31 ` mpolacek at gcc dot gnu.org

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).