diff options
author | Jason Merrill <jason@redhat.com> | 2018-06-01 18:48:40 -0400 |
---|---|---|
committer | Jason Merrill <jason@gcc.gnu.org> | 2018-06-01 18:48:40 -0400 |
commit | f8ad043f4c8ea35c5333364fd5b2121dbcb66b71 (patch) | |
tree | 1f55330354a1f9d0dbb15d9c78731c664bf46b84 /gcc/c-family | |
parent | c94c353225cfa30a351399064ea3f3dc9326e472 (diff) | |
download | gcc-f8ad043f4c8ea35c5333364fd5b2121dbcb66b71.tar.gz |
* c-cppbuiltin.c (c_cpp_builtins): Bump __cpp_deduction_guides to 201703.
From-SVN: r261090
Diffstat (limited to 'gcc/c-family')
-rw-r--r-- | gcc/c-family/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/c-family/c-cppbuiltin.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/c-family/ChangeLog b/gcc/c-family/ChangeLog index 319e546534a..ad21a4bd0e9 100644 --- a/gcc/c-family/ChangeLog +++ b/gcc/c-family/ChangeLog @@ -1,3 +1,8 @@ +2018-06-01 Jason Merrill <jason@redhat.com> + + * c-cppbuiltin.c (c_cpp_builtins): Bump __cpp_deduction_guides to + 201703. + 2018-06-01 Eric Botcazou <ebotcazou@adacore.com> * c-ada-spec.c (dump_ada_declaration) <TYPE_DECL>: Generate a forward diff --git a/gcc/c-family/c-cppbuiltin.c b/gcc/c-family/c-cppbuiltin.c index 3fc4fa9cd68..99a29855b85 100644 --- a/gcc/c-family/c-cppbuiltin.c +++ b/gcc/c-family/c-cppbuiltin.c @@ -970,7 +970,7 @@ c_cpp_builtins (cpp_reader *pfile) cpp_define (pfile, "__cpp_capture_star_this=201603"); cpp_define (pfile, "__cpp_inline_variables=201606"); cpp_define (pfile, "__cpp_aggregate_bases=201603"); - cpp_define (pfile, "__cpp_deduction_guides=201611"); + cpp_define (pfile, "__cpp_deduction_guides=201703"); cpp_define (pfile, "__cpp_noexcept_function_type=201510"); cpp_define (pfile, "__cpp_template_auto=201606"); cpp_define (pfile, "__cpp_structured_bindings=201606"); |