parser.c (cp_parser_base_specifier): Fix typos in error messages.
authorVolker Reichelt <v.reichelt@netcologne.de>
Mon, 5 Jun 2017 17:40:32 +0000 (17:40 +0000)
committerVolker Reichelt <reichelt@gcc.gnu.org>
Mon, 5 Jun 2017 17:40:32 +0000 (17:40 +0000)
        * parser.c (cp_parser_base_specifier): Fix typos in error messages.

From-SVN: r248884

gcc/cp/ChangeLog
gcc/cp/parser.c

index 5515ac738b711ea96cbf67b5dfd9edaade721e21..f9bd9548eb84b0a3bb4be6bce0b4764ae124ad25 100644 (file)
@@ -1,3 +1,7 @@
+2017-06-05  Volker Reichelt  <v.reichelt@netcologne.de>
+
+       * parser.c (cp_parser_base_specifier): Fix typos in error messages.
+
 2017-06-02  Nathan Sidwell  <nathan@acm.org>
 
        Remove lang_type_ptrmem.
index 313eebbc3d5fecd2c8787facafb67f3ef291431a..891341d1e8132784cdd1bdb8ce24a77c1bfe7ddd 100644 (file)
@@ -23706,7 +23706,7 @@ cp_parser_base_specifier (cp_parser* parser)
          if (virtual_p && !duplicate_virtual_error_issued_p)
            {
              cp_parser_error (parser,
-                              "%<virtual%> specified more than once in base-specified");
+                              "%<virtual%> specified more than once in base-specifier");
              duplicate_virtual_error_issued_p = true;
            }
 
@@ -23726,7 +23726,7 @@ cp_parser_base_specifier (cp_parser* parser)
              && !duplicate_access_error_issued_p)
            {
              cp_parser_error (parser,
-                              "more than one access specifier in base-specified");
+                              "more than one access specifier in base-specifier");
              duplicate_access_error_issued_p = true;
            }