OSDN Git Service

* g++.dg/ext/dllimport6.C: Remove extra ';'.
authordannysmith <dannysmith@138bc75d-0d04-0410-961f-82ee72b054a4>
Sun, 1 Apr 2007 09:21:16 +0000 (09:21 +0000)
committerdannysmith <dannysmith@138bc75d-0d04-0410-961f-82ee72b054a4>
Sun, 1 Apr 2007 09:21:16 +0000 (09:21 +0000)
* g++.dg/ext/dllimport7.C: Likewise.
* g++.dg/ext/selectany1.C: Likewise.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@123397 138bc75d-0d04-0410-961f-82ee72b054a4

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 35e22c8..b524f7b 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 3b2a082..ec85b36 100644 (file)
@@ -3,7 +3,7 @@
 
 struct Baz
 {
-  Baz(int a_ =0) : a(a_) {}
+  Baz(int a_ =0) : a(a_) {}
   int a;
 };
 
index 9754ada..8bf3848 100644 (file)
@@ -5,7 +5,7 @@
 
 struct Baz
 {
-  Baz(int a_ =0) : a(a_) {}; 
+  Baz(int a_ =0) : a(a_) {} 
   int a;
 };
 
index 065332a..008d15b 100644 (file)
@@ -15,7 +15,7 @@ private:
   int m_i;
 public:
   X(int i): m_i(i){}
-  ~X(){};
+  ~X(){}
 };
 
 __declspec(selectany) X x(1);