Commit 59a67d73 by Paolo Carlini

re PR c++/46901 (Error message repeats itself)

2010-12-12  Paolo Carlini  <paolo.carlini@oracle.com>

	PR c++/46901
	* typeck.c (convert_for_assignment): Fix typo in warning message.

From-SVN: r167723
parent 2cdda6e3
2010-12-12 Paolo Carlini <paolo.carlini@oracle.com>
PR c++/46901
* typeck.c (convert_for_assignment): Fix typo in warning message.
2010-12-10 Jakub Jelinek <jakub@redhat.com> 2010-12-10 Jakub Jelinek <jakub@redhat.com>
PR c++/46001 PR c++/46001
...@@ -30,7 +35,7 @@ ...@@ -30,7 +35,7 @@
(cp_parser_objc_class_interface): Updated call to (cp_parser_objc_class_interface): Updated call to
cp_parser_objc_superclass_or_category. cp_parser_objc_superclass_or_category.
(cp_parser_objc_class_implementation): Same change. (cp_parser_objc_class_implementation): Same change.
2010-12-09 Nathan Froyd <froydnj@codesourcery.com> 2010-12-09 Nathan Froyd <froydnj@codesourcery.com>
* call.c (print_conversion_rejection): Indent messages two spaces. * call.c (print_conversion_rejection): Indent messages two spaces.
...@@ -133,7 +138,7 @@ ...@@ -133,7 +138,7 @@
(cp/semantics.o): Same change. (cp/semantics.o): Same change.
(cp/typeck.o): Same change. (cp/typeck.o): Same change.
* config-lang.in (gtfiles): Added c-family/c-objc.h. * config-lang.in (gtfiles): Added c-family/c-objc.h.
2010-12-03 Jason Merrill <jason@redhat.com> 2010-12-03 Jason Merrill <jason@redhat.com>
PR c++/46645 PR c++/46645
...@@ -418,14 +423,14 @@ ...@@ -418,14 +423,14 @@
2010-11-04 Nicola Pero <nicola.pero@meta-innovation.com> 2010-11-04 Nicola Pero <nicola.pero@meta-innovation.com>
Fixed using the Objective-C 2.0 dot-syntax with class names. Fixed using the Objective-C 2.0 dot-syntax with class names.
* parser.c (cp_parser_primary_expression): Recognize Objective-C * parser.c (cp_parser_primary_expression): Recognize Objective-C
2.0 dot-syntax with class names and process it. 2.0 dot-syntax with class names and process it.
(cp_parser_nonclass_name): Recognize Objective-C 2.0 dot-syntax (cp_parser_nonclass_name): Recognize Objective-C 2.0 dot-syntax
with class names. with class names.
(cp_parser_class_name): Same change. (cp_parser_class_name): Same change.
(cp_parser_simple_type_specifier): Tidied comments. (cp_parser_simple_type_specifier): Tidied comments.
2010-11-04 Jason Merrill <jason@redhat.com> 2010-11-04 Jason Merrill <jason@redhat.com>
PR c++/46298 PR c++/46298
......
...@@ -7321,7 +7321,7 @@ convert_for_assignment (tree type, tree rhs, ...@@ -7321,7 +7321,7 @@ convert_for_assignment (tree type, tree rhs,
break; break;
case ICR_CONVERTING: case ICR_CONVERTING:
warning (OPT_Wmissing_format_attribute, warning (OPT_Wmissing_format_attribute,
"target of conversion might be might be a candidate " "target of conversion might be a candidate "
"for a format attribute"); "for a format attribute");
break; break;
case ICR_INIT: case ICR_INIT:
......
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