* constraint.cc (diagnose_check_constraint): Fix %E thinko.
authorNathan Sidwell <nathan@acm.org>
Thu, 4 May 2017 18:37:53 +0000 (18:37 +0000)
committerNathan Sidwell <nathan@gcc.gnu.org>
Thu, 4 May 2017 18:37:53 +0000 (18:37 +0000)
From-SVN: r247614

gcc/cp/ChangeLog
gcc/cp/constraint.cc

index ef1809cc0c5648898bf43fff4c69709eb771ad02..ac7c0339c2142376ea960cde1ceac749335bee69 100644 (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
index a2c910dd5ba3342c1b8f2d7d0054c4fe17d83307..3783553152ad09679a8ef68b974f50ffb77f2a9f 100644 (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;