Commit 08a1cadc by Jason Merrill

* c-cppbuiltin.c (c_cpp_builtins): Bump __cpp_range_based_for.

From-SVN: r234207
parent 26a8813f
2016-03-14 Jason Merrill <jason@redhat.com>
* c-cppbuiltin.c (c_cpp_builtins): Bump __cpp_range_based_for.
2016-03-09 Richard Biener <rguenther@suse.de> 2016-03-09 Richard Biener <rguenther@suse.de>
PR c/70143 PR c/70143
......
...@@ -871,7 +871,7 @@ c_cpp_builtins (cpp_reader *pfile) ...@@ -871,7 +871,7 @@ c_cpp_builtins (cpp_reader *pfile)
cpp_define (pfile, "__cpp_namespace_attributes=201411"); cpp_define (pfile, "__cpp_namespace_attributes=201411");
cpp_define (pfile, "__cpp_enumerator_attributes=201411"); cpp_define (pfile, "__cpp_enumerator_attributes=201411");
cpp_define (pfile, "__cpp_nested_namespace_definitions=201411"); cpp_define (pfile, "__cpp_nested_namespace_definitions=201411");
cpp_define (pfile, "__cpp_fold_expressions=201411"); cpp_define (pfile, "__cpp_fold_expressions=201603");
cpp_define (pfile, "__cpp_nontype_template_args=201411"); cpp_define (pfile, "__cpp_nontype_template_args=201411");
} }
if (flag_concepts) if (flag_concepts)
......
2016-03-14 Casey Carter <casey@carter.net> 2016-03-14 Casey Carter <casey@carter.net>
Jason Merrill <jason@redhat.com> Jason Merrill <jason@redhat.com>
P08184R0: Generalizing the Range-Based For Loop P0184R0: Generalizing the Range-Based For Loop
* parser.c (cp_convert_range_for): Set the type of __end separately. * parser.c (cp_convert_range_for): Set the type of __end separately.
(cp_parser_perform_range_for_lookup): Allow different begin/end (cp_parser_perform_range_for_lookup): Allow different begin/end
types if they are comparable. types if they are comparable.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment