public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/64194] New: [C++14] <unresolved overloaded function type> for function template with auto return
@ 2014-12-05 15:12 redi at gcc dot gnu.org
  2014-12-08 17:52 ` [Bug c++/64194] " ville.voutilainen at gmail dot com
                   ` (13 more replies)
  0 siblings, 14 replies; 15+ messages in thread
From: redi at gcc dot gnu.org @ 2014-12-05 15:12 UTC (permalink / raw)
  To: gcc-bugs

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

            Bug ID: 64194
           Summary: [C++14] <unresolved overloaded function type> for
                    function template with auto return
           Product: gcc
           Version: 5.0
            Status: UNCONFIRMED
          Keywords: rejects-valid
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: redi at gcc dot gnu.org

template <typename Tp> auto id() { }

template <typename T> void g(T) { }

int main()
{
    // id<int>;
    g(id<int>);
}

G++ fails to resolve id<int> in the call.

over.cc: In function ‘int main()’:
over.cc:8:14: error: no matching function for call to ‘g(<unresolved overloaded
function type>)’
     g(id<int>);
              ^
over.cc:3:28: note: candidate: template<class T> void g(T)
 template <typename T> void g(T) { }
                            ^
over.cc:3:28: note:   template argument deduction/substitution failed:
over.cc:8:14: note:   couldn't deduce template parameter ‘T’
     g(id<int>);
              ^

It works if the reference to id<int> is uncommented, or if auto id() is changed
to void id()
>From gcc-bugs-return-469556-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Dec 05 15:39:53 2014
Return-Path: <gcc-bugs-return-469556-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 16157 invoked by alias); 5 Dec 2014 15:39:52 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 16117 invoked by uid 48); 5 Dec 2014 15:39:46 -0000
From: "bep684 at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/64195] New: type_traits.h: is_trivially_copyable unimplemented
Date: Fri, 05 Dec 2014 15:39:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c++
X-Bugzilla-Version: 4.9.3
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: bep684 at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter
Message-ID: <bug-64195-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: 7bit
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2014-12/txt/msg00563.txt.bz2
Content-length: 645

https://gcc.gnu.org/bugzilla/show_bug.cgi?idd195

            Bug ID: 64195
           Summary: type_traits.h: is_trivially_copyable unimplemented
           Product: gcc
           Version: 4.9.3
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: bep684 at gmail dot com

Attempting to use std::is_trivially_copyable results in the following error at
compile-time:
"error: 'is_trivially_copyable' is not a member of 'std'"

Found the following line in type_traits.h:
"// is_trivially_copyable (still unimplemented)"


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

* [Bug c++/64194] [C++14] <unresolved overloaded function type> for function template with auto return
  2014-12-05 15:12 [Bug c++/64194] New: [C++14] <unresolved overloaded function type> for function template with auto return redi at gcc dot gnu.org
@ 2014-12-08 17:52 ` ville.voutilainen at gmail dot com
  2020-07-29 12:57 ` ppalka at gcc dot gnu.org
                   ` (12 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: ville.voutilainen at gmail dot com @ 2014-12-08 17:52 UTC (permalink / raw)
  To: gcc-bugs

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

Ville Voutilainen <ville.voutilainen at gmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2014-12-08
                 CC|                            |ville.voutilainen at gmail dot com
     Ever confirmed|0                           |1


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

* [Bug c++/64194] [C++14] <unresolved overloaded function type> for function template with auto return
  2014-12-05 15:12 [Bug c++/64194] New: [C++14] <unresolved overloaded function type> for function template with auto return redi at gcc dot gnu.org
  2014-12-08 17:52 ` [Bug c++/64194] " ville.voutilainen at gmail dot com
@ 2020-07-29 12:57 ` ppalka at gcc dot gnu.org
  2020-07-29 12:57 ` ppalka at gcc dot gnu.org
                   ` (11 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: ppalka at gcc dot gnu.org @ 2020-07-29 12:57 UTC (permalink / raw)
  To: gcc-bugs

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

Patrick Palka <ppalka at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |okannen at gmail dot com

--- Comment #10 from Patrick Palka <ppalka at gcc dot gnu.org> ---
*** Bug 96361 has been marked as a duplicate of this bug. ***

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

* [Bug c++/64194] [C++14] <unresolved overloaded function type> for function template with auto return
  2014-12-05 15:12 [Bug c++/64194] New: [C++14] <unresolved overloaded function type> for function template with auto return redi at gcc dot gnu.org
  2014-12-08 17:52 ` [Bug c++/64194] " ville.voutilainen at gmail dot com
  2020-07-29 12:57 ` ppalka at gcc dot gnu.org
@ 2020-07-29 12:57 ` ppalka at gcc dot gnu.org
  2020-07-30  2:15 ` cvs-commit at gcc dot gnu.org
                   ` (10 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: ppalka at gcc dot gnu.org @ 2020-07-29 12:57 UTC (permalink / raw)
  To: gcc-bugs

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

Patrick Palka <ppalka at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |ppalka at gcc dot gnu.org
             Status|NEW                         |ASSIGNED
           Assignee|unassigned at gcc dot gnu.org      |ppalka at gcc dot gnu.org

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

* [Bug c++/64194] [C++14] <unresolved overloaded function type> for function template with auto return
  2014-12-05 15:12 [Bug c++/64194] New: [C++14] <unresolved overloaded function type> for function template with auto return redi at gcc dot gnu.org
                   ` (2 preceding siblings ...)
  2020-07-29 12:57 ` ppalka at gcc dot gnu.org
@ 2020-07-30  2:15 ` cvs-commit at gcc dot gnu.org
  2020-08-03 14:51 ` ppalka at gcc dot gnu.org
                   ` (9 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: cvs-commit at gcc dot gnu.org @ 2020-07-30  2:15 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #11 from CVS Commits <cvs-commit at gcc dot gnu.org> ---
The master branch has been updated by Patrick Palka <ppalka@gcc.gnu.org>:

https://gcc.gnu.org/g:2c58f5cadfac338a67723fd6e41c9097760c4a33

commit r11-2420-g2c58f5cadfac338a67723fd6e41c9097760c4a33
Author: Patrick Palka <ppalka@redhat.com>
Date:   Wed Jul 29 22:06:44 2020 -0400

    c++: overload sets and placeholder return type [PR64194]

    In the testcase below, template argument deduction for the call
    g(id<int>) goes wrong because the functions in the overload set id<int>
    each have a yet-undeduced auto return type, and this undeduced return
    type makes try_one_overload fail to match up any of the overloads with
    g's parameter type, leading to g's template argument going undeduced and
    to the overload set going unresolved.

    This patch fixes this issue by performing return type deduction via
    instantiation before doing try_one_overload, in a manner similar to what
    resolve_address_of_overloaded_function does.

    gcc/cp/ChangeLog:

            PR c++/64194
            * pt.c (resolve_overloaded_unification): If the function
            template specialization has a placeholder return type,
            then instantiate it before attempting unification.

    gcc/testsuite/ChangeLog:

            PR c++/64194
            * g++.dg/cpp1y/auto-fn60.C: New test.

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

* [Bug c++/64194] [C++14] <unresolved overloaded function type> for function template with auto return
  2014-12-05 15:12 [Bug c++/64194] New: [C++14] <unresolved overloaded function type> for function template with auto return redi at gcc dot gnu.org
                   ` (3 preceding siblings ...)
  2020-07-30  2:15 ` cvs-commit at gcc dot gnu.org
@ 2020-08-03 14:51 ` ppalka at gcc dot gnu.org
  2020-09-02 16:33 ` redi at gcc dot gnu.org
                   ` (8 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: ppalka at gcc dot gnu.org @ 2020-08-03 14:51 UTC (permalink / raw)
  To: gcc-bugs

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

Patrick Palka <ppalka at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
         Resolution|---                         |FIXED
   Target Milestone|---                         |11.0
             Status|ASSIGNED                    |RESOLVED

--- Comment #12 from Patrick Palka <ppalka at gcc dot gnu.org> ---
Should be fixed for GCC 11, thanks for the reports.

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

* [Bug c++/64194] [C++14] <unresolved overloaded function type> for function template with auto return
  2014-12-05 15:12 [Bug c++/64194] New: [C++14] <unresolved overloaded function type> for function template with auto return redi at gcc dot gnu.org
                   ` (4 preceding siblings ...)
  2020-08-03 14:51 ` ppalka at gcc dot gnu.org
@ 2020-09-02 16:33 ` redi at gcc dot gnu.org
  2020-11-10 13:24 ` redi at gcc dot gnu.org
                   ` (7 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: redi at gcc dot gnu.org @ 2020-09-02 16:33 UTC (permalink / raw)
  To: gcc-bugs

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

Jonathan Wakely <redi at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |max.kanold@nu-cost.com

--- Comment #13 from Jonathan Wakely <redi at gcc dot gnu.org> ---
*** Bug 93317 has been marked as a duplicate of this bug. ***

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

* [Bug c++/64194] [C++14] <unresolved overloaded function type> for function template with auto return
  2014-12-05 15:12 [Bug c++/64194] New: [C++14] <unresolved overloaded function type> for function template with auto return redi at gcc dot gnu.org
                   ` (5 preceding siblings ...)
  2020-09-02 16:33 ` redi at gcc dot gnu.org
@ 2020-11-10 13:24 ` redi at gcc dot gnu.org
  2020-12-08 10:32 ` redi at gcc dot gnu.org
                   ` (6 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: redi at gcc dot gnu.org @ 2020-11-10 13:24 UTC (permalink / raw)
  To: gcc-bugs

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

Jonathan Wakely <redi at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |janezz55 at gmail dot com

--- Comment #14 from Jonathan Wakely <redi at gcc dot gnu.org> ---
*** Bug 97778 has been marked as a duplicate of this bug. ***

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

* [Bug c++/64194] [C++14] <unresolved overloaded function type> for function template with auto return
  2014-12-05 15:12 [Bug c++/64194] New: [C++14] <unresolved overloaded function type> for function template with auto return redi at gcc dot gnu.org
                   ` (6 preceding siblings ...)
  2020-11-10 13:24 ` redi at gcc dot gnu.org
@ 2020-12-08 10:32 ` redi at gcc dot gnu.org
  2020-12-08 22:44 ` jason at gcc dot gnu.org
                   ` (5 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: redi at gcc dot gnu.org @ 2020-12-08 10:32 UTC (permalink / raw)
  To: gcc-bugs

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

Jonathan Wakely <redi at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |leonid at volnitsky dot com

--- Comment #15 from Jonathan Wakely <redi at gcc dot gnu.org> ---
*** Bug 54111 has been marked as a duplicate of this bug. ***

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

* [Bug c++/64194] [C++14] <unresolved overloaded function type> for function template with auto return
  2014-12-05 15:12 [Bug c++/64194] New: [C++14] <unresolved overloaded function type> for function template with auto return redi at gcc dot gnu.org
                   ` (7 preceding siblings ...)
  2020-12-08 10:32 ` redi at gcc dot gnu.org
@ 2020-12-08 22:44 ` jason at gcc dot gnu.org
  2020-12-10 14:25 ` cvs-commit at gcc dot gnu.org
                   ` (4 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: jason at gcc dot gnu.org @ 2020-12-08 22:44 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #16 from Jason Merrill <jason at gcc dot gnu.org> ---
The fix looks safe to backport; it isn't a regression, but the number of
duplicate reports argue for making an exception.

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

* [Bug c++/64194] [C++14] <unresolved overloaded function type> for function template with auto return
  2014-12-05 15:12 [Bug c++/64194] New: [C++14] <unresolved overloaded function type> for function template with auto return redi at gcc dot gnu.org
                   ` (8 preceding siblings ...)
  2020-12-08 22:44 ` jason at gcc dot gnu.org
@ 2020-12-10 14:25 ` cvs-commit at gcc dot gnu.org
  2021-01-18  4:08 ` ppalka at gcc dot gnu.org
                   ` (3 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: cvs-commit at gcc dot gnu.org @ 2020-12-10 14:25 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #17 from CVS Commits <cvs-commit at gcc dot gnu.org> ---
The releases/gcc-10 branch has been updated by Patrick Palka
<ppalka@gcc.gnu.org>:

https://gcc.gnu.org/g:4fb1ee669ccaad16795baf25d2cab48d8cf8c1eb

commit r10-9136-g4fb1ee669ccaad16795baf25d2cab48d8cf8c1eb
Author: Patrick Palka <ppalka@redhat.com>
Date:   Wed Jul 29 22:06:44 2020 -0400

    c++: overload sets and placeholder return type [PR64194]

    In the testcase below, template argument deduction for the call
    g(id<int>) goes wrong because the functions in the overload set id<int>
    each have a yet-undeduced auto return type, and this undeduced return
    type makes try_one_overload fail to match up any of the overloads with
    g's parameter type, leading to g's template argument going undeduced and
    to the overload set going unresolved.

    This patch fixes this issue by performing return type deduction via
    instantiation before doing try_one_overload, in a manner similar to what
    resolve_address_of_overloaded_function does.

    gcc/cp/ChangeLog:

            PR c++/64194
            * pt.c (resolve_overloaded_unification): If the function
            template specialization has a placeholder return type,
            then instantiate it before attempting unification.

    gcc/testsuite/ChangeLog:

            PR c++/64194
            * g++.dg/cpp1y/auto-fn60.C: New test.

    (cherry picked from commit 2c58f5cadfac338a67723fd6e41c9097760c4a33)

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

* [Bug c++/64194] [C++14] <unresolved overloaded function type> for function template with auto return
  2014-12-05 15:12 [Bug c++/64194] New: [C++14] <unresolved overloaded function type> for function template with auto return redi at gcc dot gnu.org
                   ` (9 preceding siblings ...)
  2020-12-10 14:25 ` cvs-commit at gcc dot gnu.org
@ 2021-01-18  4:08 ` ppalka at gcc dot gnu.org
  2021-03-08 10:08 ` redi at gcc dot gnu.org
                   ` (2 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: ppalka at gcc dot gnu.org @ 2021-01-18  4:08 UTC (permalink / raw)
  To: gcc-bugs

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

Patrick Palka <ppalka at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|11.0                        |10.3

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

* [Bug c++/64194] [C++14] <unresolved overloaded function type> for function template with auto return
  2014-12-05 15:12 [Bug c++/64194] New: [C++14] <unresolved overloaded function type> for function template with auto return redi at gcc dot gnu.org
                   ` (10 preceding siblings ...)
  2021-01-18  4:08 ` ppalka at gcc dot gnu.org
@ 2021-03-08 10:08 ` redi at gcc dot gnu.org
  2021-04-21 12:25 ` cvs-commit at gcc dot gnu.org
  2021-07-27  7:14 ` pinskia at gcc dot gnu.org
  13 siblings, 0 replies; 15+ messages in thread
From: redi at gcc dot gnu.org @ 2021-03-08 10:08 UTC (permalink / raw)
  To: gcc-bugs

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

Jonathan Wakely <redi at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |barry.revzin at gmail dot com

--- Comment #18 from Jonathan Wakely <redi at gcc dot gnu.org> ---
*** Bug 86826 has been marked as a duplicate of this bug. ***

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

* [Bug c++/64194] [C++14] <unresolved overloaded function type> for function template with auto return
  2014-12-05 15:12 [Bug c++/64194] New: [C++14] <unresolved overloaded function type> for function template with auto return redi at gcc dot gnu.org
                   ` (11 preceding siblings ...)
  2021-03-08 10:08 ` redi at gcc dot gnu.org
@ 2021-04-21 12:25 ` cvs-commit at gcc dot gnu.org
  2021-07-27  7:14 ` pinskia at gcc dot gnu.org
  13 siblings, 0 replies; 15+ messages in thread
From: cvs-commit at gcc dot gnu.org @ 2021-04-21 12:25 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #19 from CVS Commits <cvs-commit at gcc dot gnu.org> ---
The releases/gcc-9 branch has been updated by Patrick Palka
<ppalka@gcc.gnu.org>:

https://gcc.gnu.org/g:9499fe0403e310f4eb1f23279bff84259e120e76

commit r9-9453-g9499fe0403e310f4eb1f23279bff84259e120e76
Author: Patrick Palka <ppalka@redhat.com>
Date:   Wed Jul 29 22:06:44 2020 -0400

    c++: overload sets and placeholder return type [PR64194]

    In the testcase below, template argument deduction for the call
    g(id<int>) goes wrong because the functions in the overload set id<int>
    each have a yet-undeduced auto return type, and this undeduced return
    type makes try_one_overload fail to match up any of the overloads with
    g's parameter type, leading to g's template argument going undeduced and
    to the overload set going unresolved.

    This patch fixes this issue by performing return type deduction via
    instantiation before doing try_one_overload, in a manner similar to what
    resolve_address_of_overloaded_function does.

    gcc/cp/ChangeLog:

            PR c++/64194
            * pt.c (resolve_overloaded_unification): If the function
            template specialization has a placeholder return type,
            then instantiate it before attempting unification.

    gcc/testsuite/ChangeLog:

            PR c++/64194
            * g++.dg/cpp1y/auto-fn60.C: New test.

    (cherry picked from commit 2c58f5cadfac338a67723fd6e41c9097760c4a33)

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

* [Bug c++/64194] [C++14] <unresolved overloaded function type> for function template with auto return
  2014-12-05 15:12 [Bug c++/64194] New: [C++14] <unresolved overloaded function type> for function template with auto return redi at gcc dot gnu.org
                   ` (12 preceding siblings ...)
  2021-04-21 12:25 ` cvs-commit at gcc dot gnu.org
@ 2021-07-27  7:14 ` pinskia at gcc dot gnu.org
  13 siblings, 0 replies; 15+ messages in thread
From: pinskia at gcc dot gnu.org @ 2021-07-27  7:14 UTC (permalink / raw)
  To: gcc-bugs

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

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

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |spartan_117 at juno dot com

--- Comment #20 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
*** Bug 97999 has been marked as a duplicate of this bug. ***

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

end of thread, other threads:[~2021-07-27  7:14 UTC | newest]

Thread overview: 15+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-12-05 15:12 [Bug c++/64194] New: [C++14] <unresolved overloaded function type> for function template with auto return redi at gcc dot gnu.org
2014-12-08 17:52 ` [Bug c++/64194] " ville.voutilainen at gmail dot com
2020-07-29 12:57 ` ppalka at gcc dot gnu.org
2020-07-29 12:57 ` ppalka at gcc dot gnu.org
2020-07-30  2:15 ` cvs-commit at gcc dot gnu.org
2020-08-03 14:51 ` ppalka at gcc dot gnu.org
2020-09-02 16:33 ` redi at gcc dot gnu.org
2020-11-10 13:24 ` redi at gcc dot gnu.org
2020-12-08 10:32 ` redi at gcc dot gnu.org
2020-12-08 22:44 ` jason at gcc dot gnu.org
2020-12-10 14:25 ` cvs-commit at gcc dot gnu.org
2021-01-18  4:08 ` ppalka at gcc dot gnu.org
2021-03-08 10:08 ` redi at gcc dot gnu.org
2021-04-21 12:25 ` cvs-commit at gcc dot gnu.org
2021-07-27  7:14 ` pinskia 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).