mirror of git://gcc.gnu.org/git/gcc.git
* init.c (cpp_init_builtins): Update __cplusplus for C++17.
From-SVN: r246211
This commit is contained in:
parent
fbd603c43d
commit
85e653c925
|
|
@ -1,3 +1,7 @@
|
||||||
|
2017-03-16 Jason Merrill <jason@redhat.com>
|
||||||
|
|
||||||
|
* init.c (cpp_init_builtins): Update __cplusplus for C++17.
|
||||||
|
|
||||||
2017-02-09 Gerald Pfeifer <gerald@pfeifer.com>
|
2017-02-09 Gerald Pfeifer <gerald@pfeifer.com>
|
||||||
|
|
||||||
* Makefile.in (po/$(PACKAGE).pot): Adjust bug reporting URL.
|
* Makefile.in (po/$(PACKAGE).pot): Adjust bug reporting URL.
|
||||||
|
|
|
||||||
|
|
@ -499,7 +499,7 @@ cpp_init_builtins (cpp_reader *pfile, int hosted)
|
||||||
{
|
{
|
||||||
if (CPP_OPTION (pfile, lang) == CLK_CXX1Z
|
if (CPP_OPTION (pfile, lang) == CLK_CXX1Z
|
||||||
|| CPP_OPTION (pfile, lang) == CLK_GNUCXX1Z)
|
|| CPP_OPTION (pfile, lang) == CLK_GNUCXX1Z)
|
||||||
_cpp_define_builtin (pfile, "__cplusplus 201500L");
|
_cpp_define_builtin (pfile, "__cplusplus 201703L");
|
||||||
else if (CPP_OPTION (pfile, lang) == CLK_CXX14
|
else if (CPP_OPTION (pfile, lang) == CLK_CXX14
|
||||||
|| CPP_OPTION (pfile, lang) == CLK_GNUCXX14)
|
|| CPP_OPTION (pfile, lang) == CLK_GNUCXX14)
|
||||||
_cpp_define_builtin (pfile, "__cplusplus 201402L");
|
_cpp_define_builtin (pfile, "__cplusplus 201402L");
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue