Re: [PATCH v3] c++: Add support for -std=c++23

2021-01-26 Thread Jason Merrill via Gcc-patches
Running git gcc-verify on this version, I get ERR: cannot find a ChangeLog location in message I had to fix the indentation of the ChangeLog entries to make it work. Probably best to include them in the attachment, e.g. by attaching the result of git format-patch. It looks like you copied the

[PATCH v3] c++: Add support for -std=c++23

2021-01-24 Thread Paul Fee via Gcc-patches
Derived from the changes that added C++2a support in 2017. https://gcc.gnu.org/g:026a79f70cf33f836ea5275eda72d4870a3041e5 No C++23 features are added here. Use of -std=c++23 sets __cplusplus to 202100L. $ g++ -std=c++23 -dM -E -x c++ - < /dev/null | grep cplusplus #define __cplusplus 202100L Cha