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:
Volker Reichelt 2017-05-07 19:41:09 +00:00 committed by Volker Reichelt
parent 8637c116c5
commit d4a5c4ebc7
2 changed files with 8 additions and 3 deletions

View File

@ -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> 2017-05-05 David Malcolm <dmalcolm@redhat.com>
* error.c (pedwarn_cxx98): Replace report_diagnostic * error.c (pedwarn_cxx98): Replace report_diagnostic

View File

@ -3457,16 +3457,16 @@ print_z_candidate (location_t loc, const char *msgstr,
{ {
cloc = loc; cloc = loc;
if (candidate->num_convs == 3) 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[0]->type,
candidate->convs[1]->type, candidate->convs[1]->type,
candidate->convs[2]->type); candidate->convs[2]->type);
else if (candidate->num_convs == 2) 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[0]->type,
candidate->convs[1]->type); candidate->convs[1]->type);
else else
inform (cloc, "%<%s%D(%T) <built-in>%>", msg, fn, inform (cloc, "%s%<%D(%T)%> <built-in>", msg, fn,
candidate->convs[0]->type); candidate->convs[0]->type);
} }
else if (TYPE_P (fn)) else if (TYPE_P (fn))