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:
parent
2b9e95d02a
commit
4719fc489c
gcc/testsuite
@ -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);
|
||||
|
Loading…
x
Reference in New Issue
Block a user