Commit 4719fc48 by Danny Smith Committed by Danny Smith

dllimport6.C: Remove extra ';'.

	* g++.dg/ext/dllimport6.C: Remove extra ';'.
	* g++.dg/ext/dllimport7.C: Likewise.
	* g++.dg/ext/selectany1.C: Likewise.

From-SVN: r123397
parent 2b9e95d0
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> 2007-03-31 Douglas Gregor <doug.gregor@gmail.com>
* g++.dg/parser/pr31138.C: New. * g++.dg/parser/pr31138.C: New.
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
struct Baz struct Baz
{ {
Baz(int a_ =0) : a(a_) {}; Baz(int a_ =0) : a(a_) {}
int a; int a;
}; };
......
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
struct Baz struct Baz
{ {
Baz(int a_ =0) : a(a_) {}; Baz(int a_ =0) : a(a_) {}
int a; int a;
}; };
......
...@@ -15,7 +15,7 @@ private: ...@@ -15,7 +15,7 @@ private:
int m_i; int m_i;
public: public:
X(int i): m_i(i){} X(int i): m_i(i){}
~X(){}; ~X(){}
}; };
__declspec(selectany) X x(1); __declspec(selectany) X x(1);
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment