Fix small typos in the coding rule enforcement warnings.
authorVille Voutilainen <ville.voutilainen@gmail.com>
Wed, 23 Sep 2015 18:22:21 +0000 (21:22 +0300)
committerVille Voutilainen <ville@gcc.gnu.org>
Wed, 23 Sep 2015 18:22:21 +0000 (21:22 +0300)
/cp
2015-09-23  Ville Voutilainen  <ville.voutilainen@gmail.com>

Fix small typos in the coding rule enforcement warnings.
* parser.c (cp_parser_namespace_definition): Replace 'namepace'
with 'namespace'.

/testsuite
2015-09-23  Ville Voutilainen  <ville.voutilainen@gmail.com>

Fix small typos in the coding rule enforcement warnings.
* g++.dg/diagnostic/disable.C: Replace 'namepace'
with 'namespace'.

From-SVN: r228061

gcc/cp/ChangeLog
gcc/cp/parser.c
gcc/testsuite/ChangeLog
gcc/testsuite/g++.dg/diagnostic/disable.C

index 49f131e42e6631d659368b5df74756e2dd0efa82..cb3a9b16f43efe69ff43ad4633601708b49b5178 100644 (file)
@@ -1,3 +1,9 @@
+2015-09-23  Ville Voutilainen  <ville.voutilainen@gmail.com>
+
+       Fix small typos in the coding rule enforcement warnings.
+       * parser.c (cp_parser_namespace_definition): Replace 'namepace'
+       with 'namespace'.
+
 2015-09-22  Nathan Sidwell  <nathan@codesourcery.com>
 
        * decl.c (xref_basetypes): Check virtual and/or multiple
index cc920926eaed5b193781ca036737ce3f5c8d22b9..114815660a2b3c92f9ec7bf1313d8963922e049d 100644 (file)
@@ -17043,7 +17043,7 @@ cp_parser_namespace_definition (cp_parser* parser)
 
   has_visibility = handle_namespace_attrs (current_namespace, attribs);
 
-  warning  (OPT_Wnamespaces, "namepace %qD entered", current_namespace);
+  warning  (OPT_Wnamespaces, "namespace %qD entered", current_namespace);
 
   /* Parse the body of the namespace.  */
   cp_parser_namespace_body (parser);
index 759219f62de647652f4766ad005d24cbfd6d4e50..fa93d62cb4c23f704418b8061ad3da0db13e8a3e 100644 (file)
@@ -1,3 +1,9 @@
+2015-09-23  Ville Voutilainen  <ville.voutilainen@gmail.com>
+
+       Fix small typos in the coding rule enforcement warnings.
+       * g++.dg/diagnostic/disable.C: Replace 'namepace'
+       with 'namespace'.
+
 2015-09-23   Richard Biener  <rguenther@suse.de>
 
        PR middle-end/67662
index a69033d98a83f0125dea62cf2cd578763e050b0c..7d86e073b26c9699e2ea8b55504d3c0c59b4e061 100644 (file)
@@ -3,7 +3,7 @@
 #include <iostream>
 #include <algorithm>
 
-namespace foo { } // { dg-warning "namepace" }
+namespace foo { } // { dg-warning "namespace" }
 
 template <typename X> X Foo (); // { dg-warning "template" }