From 99474f812e6cc226e01b5a2e1f28695983ff477b Mon Sep 17 00:00:00 2001 From: Ville Voutilainen Date: Wed, 23 Sep 2015 21:22:21 +0300 Subject: [PATCH] Fix small typos in the coding rule enforcement warnings. /cp 2015-09-23 Ville Voutilainen 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 Fix small typos in the coding rule enforcement warnings. * g++.dg/diagnostic/disable.C: Replace 'namepace' with 'namespace'. From-SVN: r228061 --- gcc/cp/ChangeLog | 6 ++++++ gcc/cp/parser.c | 2 +- gcc/testsuite/ChangeLog | 6 ++++++ gcc/testsuite/g++.dg/diagnostic/disable.C | 2 +- 4 files changed, 14 insertions(+), 2 deletions(-) diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index 49f131e42e6..cb3a9b16f43 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,9 @@ +2015-09-23 Ville Voutilainen + + Fix small typos in the coding rule enforcement warnings. + * parser.c (cp_parser_namespace_definition): Replace 'namepace' + with 'namespace'. + 2015-09-22 Nathan Sidwell * decl.c (xref_basetypes): Check virtual and/or multiple diff --git a/gcc/cp/parser.c b/gcc/cp/parser.c index cc920926eae..114815660a2 100644 --- a/gcc/cp/parser.c +++ b/gcc/cp/parser.c @@ -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); diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 759219f62de..fa93d62cb4c 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,9 @@ +2015-09-23 Ville Voutilainen + + Fix small typos in the coding rule enforcement warnings. + * g++.dg/diagnostic/disable.C: Replace 'namepace' + with 'namespace'. + 2015-09-23 Richard Biener PR middle-end/67662 diff --git a/gcc/testsuite/g++.dg/diagnostic/disable.C b/gcc/testsuite/g++.dg/diagnostic/disable.C index a69033d98a8..7d86e073b26 100644 --- a/gcc/testsuite/g++.dg/diagnostic/disable.C +++ b/gcc/testsuite/g++.dg/diagnostic/disable.C @@ -3,7 +3,7 @@ #include #include -namespace foo { } // { dg-warning "namepace" } +namespace foo { } // { dg-warning "namespace" } template X Foo (); // { dg-warning "template" } -- 2.30.2