Commit 0f05d905 by Nathan Sidwell Committed by Nathan Sidwell

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

From-SVN: r247614
parent 7e887487
2017-05-04 Nathan Sidwell <nathan@acm.org>
* constraint.cc (diagnose_check_constraint): Fix %E thinko.
2017-05-04 Martin Sebor <msebor@redhat.com> 2017-05-04 Martin Sebor <msebor@redhat.com>
PR translation/80280 PR translation/80280
......
...@@ -2859,7 +2859,7 @@ diagnose_check_constraint (location_t loc, tree orig, tree cur, tree args) ...@@ -2859,7 +2859,7 @@ diagnose_check_constraint (location_t loc, tree orig, tree cur, tree args)
{ {
if (elide_constraint_failure_p ()) if (elide_constraint_failure_p ())
return; 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); cur = get_concept_definition (decl);
tsubst_expr (cur, targs, tf_warning_or_error, NULL_TREE, false); tsubst_expr (cur, targs, tf_warning_or_error, NULL_TREE, false);
return; return;
......
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