Skip to content
Snippets Groups Projects
Unverified Commit 2f20c704 authored by Martin Liska's avatar Martin Liska
Browse files

Fix a test-case warning.

	PR target/95229
	* g++.target/i386/pr95229.C: Fix
	error: unnamed type with no linkage used
	to declare variable ‘<unnamed class> e’ with linkage
	with -std=gnu++98.
parent ea097d14
No related branches found
No related tags found
No related merge requests found
2020-05-21 Martin Liska <mliska@suse.cz>
PR target/95229
* g++.target/i386/pr95229.C: Fix
error: unnamed type with no linkage used
to declare variable ‘<unnamed class> e’ with linkage
with -std=gnu++98.
2020-05-21 Nathan Sidwell <nathan@acm.org> 2020-05-21 Nathan Sidwell <nathan@acm.org>
   
* c-c++-common/cpp/cmd-1.c: Delete. * c-c++-common/cpp/cmd-1.c: Delete.
......
...@@ -7,7 +7,7 @@ struct a { ...@@ -7,7 +7,7 @@ struct a {
unsigned long long c; unsigned long long c;
}; };
class { class my_class {
public: public:
a d; a d;
} e; } e;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment