2
0
mirror of git://gcc.gnu.org/git/gcc.git synced 2025-04-18 06:10:24 +08:00

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
This commit is contained in:
Danny Smith 2007-04-01 09:21:16 +00:00 committed by Danny Smith
parent 2b9e95d02a
commit 4719fc489c
4 changed files with 9 additions and 3 deletions

@ -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.

@ -3,7 +3,7 @@
struct Baz
{
Baz(int a_ =0) : a(a_) {};
Baz(int a_ =0) : a(a_) {}
int a;
};

@ -5,7 +5,7 @@
struct Baz
{
Baz(int a_ =0) : a(a_) {};
Baz(int a_ =0) : a(a_) {}
int a;
};

@ -15,7 +15,7 @@ private:
int m_i;
public:
X(int i): m_i(i){}
~X(){};
~X(){}
};
__declspec(selectany) X x(1);