public inbox for gcc@gcc.gnu.org
 help / color / mirror / Atom feed
* std::format not listed on the C++ Standards support page
@ 2023-05-10 16:38 C. Heide
  2023-05-10 16:45 ` Jakub Jelinek
  2023-05-10 17:15 ` Jonathan Wakely
  0 siblings, 2 replies; 5+ messages in thread
From: C. Heide @ 2023-05-10 16:38 UTC (permalink / raw)
  To: gcc

Hello, just a note that support for std::format (P0645R10) does
not seem to be listed anywhere on the current C++ Standards
Support page (https://gcc.gnu.org/projects/cxx-status.html).

I was trying to figure out if it was supposed to be in the 12.3
release or not, but based on PR104166 I guess it's 13+ only. But
just in case anyone else is looking for this info... :)

Thanks,
- C.

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

* Re: std::format not listed on the C++ Standards support page
  2023-05-10 16:38 std::format not listed on the C++ Standards support page C. Heide
@ 2023-05-10 16:45 ` Jakub Jelinek
  2023-05-10 16:50   ` Jonathan Wakely
  2023-05-10 16:55   ` Jakub Jelinek
  2023-05-10 17:15 ` Jonathan Wakely
  1 sibling, 2 replies; 5+ messages in thread
From: Jakub Jelinek @ 2023-05-10 16:45 UTC (permalink / raw)
  To: C. Heide; +Cc: gcc

On Wed, May 10, 2023 at 10:38:02AM -0600, C. Heide via Gcc wrote:
> Hello, just a note that support for std::format (P0645R10) does
> not seem to be listed anywhere on the current C++ Standards
> Support page (https://gcc.gnu.org/projects/cxx-status.html).
> 
> I was trying to figure out if it was supposed to be in the 12.3
> release or not, but based on PR104166 I guess it's 13+ only. But
> just in case anyone else is looking for this info... :)

It is a library feature, and https://gcc.gnu.org/projects/cxx-status.html
only documents core language features.
Library feature implementation status is documented in the libstdc++
manual, so
https://gcc.gnu.org/onlinedocs/libstdc++/manual/status.html#manual.intro.status.iso

	Jakub


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

* Re: std::format not listed on the C++ Standards support page
  2023-05-10 16:45 ` Jakub Jelinek
@ 2023-05-10 16:50   ` Jonathan Wakely
  2023-05-10 16:55   ` Jakub Jelinek
  1 sibling, 0 replies; 5+ messages in thread
From: Jonathan Wakely @ 2023-05-10 16:50 UTC (permalink / raw)
  To: Jakub Jelinek; +Cc: C. Heide, gcc

On Wed, 10 May 2023 at 17:47, Jakub Jelinek via Gcc <gcc@gcc.gnu.org> wrote:
>
> On Wed, May 10, 2023 at 10:38:02AM -0600, C. Heide via Gcc wrote:
> > Hello, just a note that support for std::format (P0645R10) does
> > not seem to be listed anywhere on the current C++ Standards
> > Support page (https://gcc.gnu.org/projects/cxx-status.html).
> >
> > I was trying to figure out if it was supposed to be in the 12.3
> > release or not, but based on PR104166 I guess it's 13+ only. But
> > just in case anyone else is looking for this info... :)
>
> It is a library feature, and https://gcc.gnu.org/projects/cxx-status.html
> only documents core language features.
> Library feature implementation status is documented in the libstdc++
> manual, so
> https://gcc.gnu.org/onlinedocs/libstdc++/manual/status.html#manual.intro.status.iso


I'm working on a patch to update the library docs. I didn't get it
done in time for 13.1 though.

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

* Re: std::format not listed on the C++ Standards support page
  2023-05-10 16:45 ` Jakub Jelinek
  2023-05-10 16:50   ` Jonathan Wakely
@ 2023-05-10 16:55   ` Jakub Jelinek
  1 sibling, 0 replies; 5+ messages in thread
From: Jakub Jelinek @ 2023-05-10 16:55 UTC (permalink / raw)
  To: C. Heide, gcc

On Wed, May 10, 2023 at 06:45:55PM +0200, Jakub Jelinek via Gcc wrote:
> On Wed, May 10, 2023 at 10:38:02AM -0600, C. Heide via Gcc wrote:
> > Hello, just a note that support for std::format (P0645R10) does
> > not seem to be listed anywhere on the current C++ Standards
> > Support page (https://gcc.gnu.org/projects/cxx-status.html).
> > 
> > I was trying to figure out if it was supposed to be in the 12.3
> > release or not, but based on PR104166 I guess it's 13+ only. But
> > just in case anyone else is looking for this info... :)
> 
> It is a library feature, and https://gcc.gnu.org/projects/cxx-status.html
> only documents core language features.
> Library feature implementation status is documented in the libstdc++
> manual, so
> https://gcc.gnu.org/onlinedocs/libstdc++/manual/status.html#manual.intro.status.iso

Though, that page hasn't been updated for std::format yet.
https://en.cppreference.com/w/cpp/compiler_support documents that though.

	Jakub


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

* Re: std::format not listed on the C++ Standards support page
  2023-05-10 16:38 std::format not listed on the C++ Standards support page C. Heide
  2023-05-10 16:45 ` Jakub Jelinek
@ 2023-05-10 17:15 ` Jonathan Wakely
  1 sibling, 0 replies; 5+ messages in thread
From: Jonathan Wakely @ 2023-05-10 17:15 UTC (permalink / raw)
  To: C. Heide; +Cc: gcc

On Wed, 10 May 2023 at 17:38, C. Heide via Gcc <gcc@gcc.gnu.org> wrote:
>
> Hello, just a note that support for std::format (P0645R10) does
> not seem to be listed anywhere on the current C++ Standards
> Support page (https://gcc.gnu.org/projects/cxx-status.html).
>
> I was trying to figure out if it was supposed to be in the 12.3
> release or not, but based on PR104166 I guess it's 13+ only. But
> just in case anyone else is looking for this info... :)

It's the very first thing listed in the libstdc++ release notes for 13:
https://gcc.gnu.org/gcc-13/changes.html#libstdcxx

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

end of thread, other threads:[~2023-05-10 17:15 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-05-10 16:38 std::format not listed on the C++ Standards support page C. Heide
2023-05-10 16:45 ` Jakub Jelinek
2023-05-10 16:50   ` Jonathan Wakely
2023-05-10 16:55   ` Jakub Jelinek
2023-05-10 17:15 ` Jonathan Wakely

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).