Hi.

It's one obvious warning message fix that I'm going to install.

Martin

gcc/cp/ChangeLog:

2020-02-20  Martin Liska  <mli...@suse.cz>

        PR translation/93838
        * parser.c (cp_parser_decl_specifier_seq): Remove trailing space.
---
 gcc/cp/parser.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


diff --git a/gcc/cp/parser.c b/gcc/cp/parser.c
index e8a536ae22f..46841344831 100644
--- a/gcc/cp/parser.c
+++ b/gcc/cp/parser.c
@@ -14164,7 +14164,7 @@ cp_parser_decl_specifier_seq (cp_parser* parser,
 			 "allowed in a C++20 concept definition");
 	      else
 		pedwarn (token->location, 0, "C++20 concept definition syntax "
-			 "is %<concept <name> = <expr>%> ");
+			 "is %<concept <name> = <expr>%>");
             }
 
 	  /* In C++20 a concept definition is just 'concept name = expr;'

Reply via email to