diff options
author | Nathan Sidwell <nathan@acm.org> | 2017-05-04 18:37:53 +0000 |
---|---|---|
committer | Nathan Sidwell <nathan@gcc.gnu.org> | 2017-05-04 18:37:53 +0000 |
commit | 0f05d90543023e62bb272e6d97d0de3ddc32ab30 (patch) | |
tree | a432b02faf27f63fe001af8372297299603c2fe6 /gcc/cp/constraint.cc | |
parent | 7e887487db3d9a7dfe014f1c6d4edcbe1f5f9d60 (diff) | |
download | gcc-0f05d90543023e62bb272e6d97d0de3ddc32ab30.zip gcc-0f05d90543023e62bb272e6d97d0de3ddc32ab30.tar.gz gcc-0f05d90543023e62bb272e6d97d0de3ddc32ab30.tar.bz2 |
* constraint.cc (diagnose_check_constraint): Fix %E thinko.
From-SVN: r247614
Diffstat (limited to 'gcc/cp/constraint.cc')
-rw-r--r-- | gcc/cp/constraint.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/cp/constraint.cc b/gcc/cp/constraint.cc index a2c910d..3783553 100644 --- a/gcc/cp/constraint.cc +++ b/gcc/cp/constraint.cc @@ -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; |