* constraint.cc (diagnose_check_constraint): Fix %E thinko.

From-SVN: r247614
This commit is contained in:
Nathan Sidwell 2017-05-04 18:37:53 +00:00 committed by Nathan Sidwell
parent 7e887487db
commit 0f05d90543
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2017-05-04 Nathan Sidwell <nathan@acm.org>
* constraint.cc (diagnose_check_constraint): Fix %E thinko.
2017-05-04 Martin Sebor <msebor@redhat.com>
PR translation/80280

View file

@ -2859,7 +2859,7 @@ diagnose_check_constraint (location_t loc, tree orig, tree cur, tree args)
{
if (elide_constraint_failure_p ())
return;
inform (loc, "in the expansion of concept %<E %S%>", check, sub);
inform (loc, "in the expansion of concept %<%E %S%>", check, sub);
cur = get_concept_definition (decl);
tsubst_expr (cur, targs, tf_warning_or_error, NULL_TREE, false);
return;