Я могу сделать это в С++/g++:
struct vec3 {
union {
struct {
float x, y, z;
};
float xyz[3];
};
};
Затем
vec3 v;
assert(&v.xyz[0] == &v.x);
assert(&v.xyz[1] == &v.y);
assert(&v.xyz[2] == &v.z);
будет работать.
Как это сделать в c с gcc? У меня
typedef struct {
union {
struct {
float x, y, z;
};
float xyz[3];
};
} Vector3;
Но все ошибки возникают, особенно
line 5: warning: declaration does not declare anything
line 7: warning: declaration does not declare anything