public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug libstdc++/104166] New: Implement C++20 std::format
@ 2022-01-21 16:14 redi at gcc dot gnu.org
  2022-01-22 20:45 ` [Bug libstdc++/104166] " pinskia at gcc dot gnu.org
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: redi at gcc dot gnu.org @ 2022-01-21 16:14 UTC (permalink / raw)
  To: gcc-bugs

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

            Bug ID: 104166
           Summary: Implement C++20 std::format
           Product: gcc
           Version: 12.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: libstdc++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: redi at gcc dot gnu.org
            Blocks: 88322
  Target Milestone: ---

https://wg21.link/P0645R10

and the DRs:
https://wg21.link/P2216R3
https://wg21.link/P2418R2
https://wg21.link/P2372R3


Referenced Bugs:

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=88322
[Bug 88322] Implement C++20 library features.

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

* [Bug libstdc++/104166] Implement C++20 std::format
  2022-01-21 16:14 [Bug libstdc++/104166] New: Implement C++20 std::format redi at gcc dot gnu.org
@ 2022-01-22 20:45 ` pinskia at gcc dot gnu.org
  2022-04-28  8:47 ` jakub at gcc dot gnu.org
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: pinskia at gcc dot gnu.org @ 2022-01-22 20:45 UTC (permalink / raw)
  To: gcc-bugs

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

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

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Last reconfirmed|                            |2022-01-22
             Status|UNCONFIRMED                 |NEW
     Ever confirmed|0                           |1

--- Comment #1 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Confirmed.

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

* [Bug libstdc++/104166] Implement C++20 std::format
  2022-01-21 16:14 [Bug libstdc++/104166] New: Implement C++20 std::format redi at gcc dot gnu.org
  2022-01-22 20:45 ` [Bug libstdc++/104166] " pinskia at gcc dot gnu.org
@ 2022-04-28  8:47 ` jakub at gcc dot gnu.org
  2022-10-18 20:20 ` redi at gcc dot gnu.org
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: jakub at gcc dot gnu.org @ 2022-04-28  8:47 UTC (permalink / raw)
  To: gcc-bugs

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

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

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |michel at lebihan dot pl

--- Comment #2 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
*** Bug 96850 has been marked as a duplicate of this bug. ***

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

* [Bug libstdc++/104166] Implement C++20 std::format
  2022-01-21 16:14 [Bug libstdc++/104166] New: Implement C++20 std::format redi at gcc dot gnu.org
  2022-01-22 20:45 ` [Bug libstdc++/104166] " pinskia at gcc dot gnu.org
  2022-04-28  8:47 ` jakub at gcc dot gnu.org
@ 2022-10-18 20:20 ` redi at gcc dot gnu.org
  2022-11-13  1:14 ` cvs-commit at gcc dot gnu.org
  2022-12-22 23:45 ` redi at gcc dot gnu.org
  4 siblings, 0 replies; 6+ messages in thread
From: redi at gcc dot gnu.org @ 2022-10-18 20:20 UTC (permalink / raw)
  To: gcc-bugs

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

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

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Assignee|unassigned at gcc dot gnu.org      |redi at gcc dot gnu.org
             Status|NEW                         |ASSIGNED
   Target Milestone|---                         |13.0

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

* [Bug libstdc++/104166] Implement C++20 std::format
  2022-01-21 16:14 [Bug libstdc++/104166] New: Implement C++20 std::format redi at gcc dot gnu.org
                   ` (2 preceding siblings ...)
  2022-10-18 20:20 ` redi at gcc dot gnu.org
@ 2022-11-13  1:14 ` cvs-commit at gcc dot gnu.org
  2022-12-22 23:45 ` redi at gcc dot gnu.org
  4 siblings, 0 replies; 6+ messages in thread
From: cvs-commit at gcc dot gnu.org @ 2022-11-13  1:14 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #3 from CVS Commits <cvs-commit at gcc dot gnu.org> ---
The master branch has been updated by Jonathan Wakely <redi@gcc.gnu.org>:

https://gcc.gnu.org/g:1d9454aba615eadd0d85c93713dd848227345f67

commit r13-3936-g1d9454aba615eadd0d85c93713dd848227345f67
Author: Jonathan Wakely <jwakely@redhat.com>
Date:   Tue Oct 18 21:20:06 2022 +0100

    libstdc++: Implement C++20 <format> [PR104166]

    This doesn't add the newer C++23 features like formatting ranges
    and escaped string prsentation types.

    However, C++23 extended floating-point types are supported, as are
    128-bit integers.

    It could do with more tests.

    libstdc++-v3/ChangeLog:

            PR libstdc++/104166
            * include/Makefile.am (std_headers): Add <format>.
            * include/Makefile.in: Regenerate.
            * include/precompiled/stdc++.h: Add <format>.
            * include/std/format: New file.
            * python/libstdcxx/v6/printers.py (StdFormatArgsPrinter): New
            printer for std::format_args.
            * testsuite/std/format/arguments/args.cc: New test.
            * testsuite/std/format/error.cc: New test.
            * testsuite/std/format/formatter.cc: New test.
            * testsuite/std/format/functions/format.cc: New test.
            * testsuite/std/format/functions/format_to_n.cc: New test.
            * testsuite/std/format/functions/size.cc: New test.
            * testsuite/std/format/functions/vformat_to.cc: New test.
            * testsuite/std/format/parse_ctx.cc: New test.
            * testsuite/std/format/string.cc: New test.
            * testsuite/std/format/string_neg.cc: New test.

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

* [Bug libstdc++/104166] Implement C++20 std::format
  2022-01-21 16:14 [Bug libstdc++/104166] New: Implement C++20 std::format redi at gcc dot gnu.org
                   ` (3 preceding siblings ...)
  2022-11-13  1:14 ` cvs-commit at gcc dot gnu.org
@ 2022-12-22 23:45 ` redi at gcc dot gnu.org
  4 siblings, 0 replies; 6+ messages in thread
From: redi at gcc dot gnu.org @ 2022-12-22 23:45 UTC (permalink / raw)
  To: gcc-bugs

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

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

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

--- Comment #4 from Jonathan Wakely <redi at gcc dot gnu.org> ---
Done for GCC 13.

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

end of thread, other threads:[~2022-12-22 23:45 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-01-21 16:14 [Bug libstdc++/104166] New: Implement C++20 std::format redi at gcc dot gnu.org
2022-01-22 20:45 ` [Bug libstdc++/104166] " pinskia at gcc dot gnu.org
2022-04-28  8:47 ` jakub at gcc dot gnu.org
2022-10-18 20:20 ` redi at gcc dot gnu.org
2022-11-13  1:14 ` cvs-commit at gcc dot gnu.org
2022-12-22 23:45 ` redi 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).