diff mbox series

Remove triling space for a warning.

Message ID 75b89a4d-b8e7-f7b1-5d13-09e7aabefaed@suse.cz
State New
Headers show
Series Remove triling space for a warning. | expand

Commit Message

Martin Liška Feb. 20, 2020, 10:55 a.m. UTC
Hi.

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

Martin

gcc/cp/ChangeLog:

2020-02-20  Martin Liska  <mliska@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 mbox series

Patch

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;'