Sam James <[email protected]> writes:

> I was going to say "you won't be using C++20 yet, though", but I suppose
> you may be able to as it's a runtime library.

It's stable and default now:

  ~$ g++ -E -o - -x c++ -dM - <<<'' | grep __cplusplus
  #define __cplusplus 202002L
  ~$ g++ -std=c++20 -E -o - -x c++ -dM - <<<'' | grep __cplusplus
  #define __cplusplus 202002L

Since it's a runtime library, we don't need to worry about bootstrap
requirements there (ergo why the code has quite a few extensions
peppered throughout as it stands).
-- 
Arsen Arsenović

Attachment: signature.asc
Description: PGP signature

Reply via email to