I want to be able to do this in visual studio:
struct A
{
int x;
};
struct B
{
int y;
struct A;
};
struct B b;
b.x //...
How can I do this? In gcc you use -fms-extensions to compile it
I want to be able to do this in visual studio:
struct A
{
int x;
};
struct B
{
int y;
struct A;
};
struct B b;
b.x //...
How can I do this? In gcc you use -fms-extensions to compile it