namespace3.C: Remove extra semicolons.
authorKriang Lerdsuwanakij <lerdsuwa@users.sourceforge.net>
Sat, 4 Jan 2003 14:30:59 +0000 (14:30 +0000)
committerKriang Lerdsuwanakij <lerdsuwa@gcc.gnu.org>
Sat, 4 Jan 2003 14:30:59 +0000 (14:30 +0000)
* g++.dg/parse/namespace3.C: Remove extra semicolons.
* g++.dg/parse/namespace4.C: Likewise.

From-SVN: r60880

gcc/testsuite/ChangeLog
gcc/testsuite/g++.dg/parse/namespace3.C
gcc/testsuite/g++.dg/parse/namespace4.C

index ea090a2..ed46afc 100644 (file)
@@ -1,3 +1,8 @@
+2003-01-04  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
+
+       * g++.dg/parse/namespace3.C: Remove extra semicolons.
+       * g++.dg/parse/namespace4.C: Likewise.
+
 2003-01-03  Nathan Sidwell  <nathan@codesourcery.com>
 
        * g++.dg/template/ntp2.C: New test.
index 5abbebf..4665d0e 100644 (file)
@@ -1,6 +1,6 @@
 /* PR c+/3816 */
 /* { dg-do compile } */
-namespace A {};
+namespace A {}
  
 namespace OtherNamespace {
  
@@ -8,5 +8,5 @@ namespace OtherNamespace {
      int member;
    } A; // used to conflict with A namespace
  
-}; // end of namespace
+} // end of namespace
  
index fb2ff64..2bee8dd 100644 (file)
@@ -2,7 +2,7 @@
 /* { dg-do compile } */
 /* Another conflict between namespace IDs and other things. */
 
-namespace A { };
+namespace A { }
 
 class B {