diff options
Diffstat (limited to 'gcc/cp/parser.c')
-rw-r--r-- | gcc/cp/parser.c | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/gcc/cp/parser.c b/gcc/cp/parser.c index 290f897..1440fdb 100644 --- a/gcc/cp/parser.c +++ b/gcc/cp/parser.c @@ -27895,14 +27895,16 @@ cp_parser_template_declaration_after_parameters (cp_parser* parser, if (!ok) { if (cxx_dialect > cxx17) - error ("literal operator template %qD has invalid parameter list;" - " expected non-type template parameter pack %<<char...>%> " - "or single non-type parameter of class type", - decl); + error_at (DECL_SOURCE_LOCATION (decl), "literal operator " + "template %qD has invalid parameter list; expected " + "non-type template parameter pack %<<char...>%> or " + "single non-type parameter of class type", + decl); else - error ("literal operator template %qD has invalid parameter list;" - " expected non-type template parameter pack %<<char...>%>", - decl); + error_at (DECL_SOURCE_LOCATION (decl), "literal operator " + "template %qD has invalid parameter list; expected " + "non-type template parameter pack %<<char...>%>", + decl); } } |