]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
dllimport6.C: Remove extra ';'.
authorDanny Smith <dannysmith@users.sourceforge.net>
Sun, 1 Apr 2007 09:21:16 +0000 (09:21 +0000)
committerDanny Smith <dannysmith@gcc.gnu.org>
Sun, 1 Apr 2007 09:21:16 +0000 (09:21 +0000)
* g++.dg/ext/dllimport6.C: Remove extra ';'.
* g++.dg/ext/dllimport7.C: Likewise.
* g++.dg/ext/selectany1.C: Likewise.

From-SVN: r123397

gcc/testsuite/ChangeLog
gcc/testsuite/g++.dg/ext/dllimport6.C
gcc/testsuite/g++.dg/ext/dllimport7.C
gcc/testsuite/g++.dg/ext/selectany1.C

index 35e22c8c187a1451a9d285859c55c2788d1dd975..b524f7bddcb5accb96459c4e8eb81eb8a533e726 100644 (file)
@@ -1,3 +1,9 @@
+2007-04-01  Danny Smith  <dannysmith@users.sourceforge.net>
+
+       * g++.dg/ext/dllimport6.C: Remove extra ';'.
+       * g++.dg/ext/dllimport7.C: Likewise.
+       * g++.dg/ext/selectany1.C: Likewise.
+
 2007-03-31  Douglas Gregor  <doug.gregor@gmail.com>
 
        * g++.dg/parser/pr31138.C: New.
index 3b2a082f9b2a33fb46b64c08a0fcf470f6470fb3..ec85b3650e41f79d76f78b67fa37c7cf306405b6 100644 (file)
@@ -3,7 +3,7 @@
 
 struct Baz
 {
-  Baz(int a_ =0) : a(a_) {}
+  Baz(int a_ =0) : a(a_) {}
   int a;
 };
 
index 9754ada962c2aa99cd598a4819c490ad159c8040..8bf384889b5186f5bb0cc40b1913bd30b4481afb 100644 (file)
@@ -5,7 +5,7 @@
 
 struct Baz
 {
-  Baz(int a_ =0) : a(a_) {}; 
+  Baz(int a_ =0) : a(a_) {} 
   int a;
 };
 
index 065332a51c711f181a9501ba162bc8d891761925..008d15b28ccfcebea023610972a113604aebd1a6 100644 (file)
@@ -15,7 +15,7 @@ private:
   int m_i;
 public:
   X(int i): m_i(i){}
-  ~X(){};
+  ~X(){}
 };
 
 __declspec(selectany) X x(1);