re PR translation/80280 (Missing closing quote (%>) c/semantics.c and c/c-typeck.c)
PR translation/80280 * call.c (print_z_candidate): Fix quoting. From-SVN: r247728
This commit is contained in:
parent
8637c116c5
commit
d4a5c4ebc7
@ -1,3 +1,8 @@
|
||||
2017-05-07 Volker Reichelt <v.reichelt@netcologne.de>
|
||||
|
||||
PR translation/80280
|
||||
* call.c (print_z_candidate): Fix quoting.
|
||||
|
||||
2017-05-05 David Malcolm <dmalcolm@redhat.com>
|
||||
|
||||
* error.c (pedwarn_cxx98): Replace report_diagnostic
|
||||
|
@ -3457,16 +3457,16 @@ print_z_candidate (location_t loc, const char *msgstr,
|
||||
{
|
||||
cloc = loc;
|
||||
if (candidate->num_convs == 3)
|
||||
inform (cloc, "%<%s%D(%T, %T, %T) <built-in>%>", msg, fn,
|
||||
inform (cloc, "%s%<%D(%T, %T, %T)%> <built-in>", msg, fn,
|
||||
candidate->convs[0]->type,
|
||||
candidate->convs[1]->type,
|
||||
candidate->convs[2]->type);
|
||||
else if (candidate->num_convs == 2)
|
||||
inform (cloc, "%<%s%D(%T, %T) <built-in>%>", msg, fn,
|
||||
inform (cloc, "%s%<%D(%T, %T)%> <built-in>", msg, fn,
|
||||
candidate->convs[0]->type,
|
||||
candidate->convs[1]->type);
|
||||
else
|
||||
inform (cloc, "%<%s%D(%T) <built-in>%>", msg, fn,
|
||||
inform (cloc, "%s%<%D(%T)%> <built-in>", msg, fn,
|
||||
candidate->convs[0]->type);
|
||||
}
|
||||
else if (TYPE_P (fn))
|
||||
|
Loading…
Reference in New Issue
Block a user