Home > Enterprise >  How to tell, whether a C proposal is accepted or not?
How to tell, whether a C proposal is accepted or not?

Time:02-08

Let's take P1907 as an example. Is it accepted into the C standard? To which version? When?

CodePudding user response:

Papers can be tracked here.

https://github.com/cplusplus/papers/issues

Entering is:issue P1907 into the search box produces:

P1907 (closed)

and

P1907R1 (merged)

Alternatively,

If you use Slack, you can join the C slack at cpplang.slack.com and privately message any paper name to @npaperbot to get information about it.

CodePudding user response:

The papers are managed on Github: https://github.com/cplusplus/papers/issues?q=

https://github.com/cplusplus/papers/issues/653

You can also look into the compiler compatibility page of cppreference: https://en.cppreference.com/w/cpp/compiler_support/20

  •  Tags:  
  • Related