I'm porting some code from IAR to CCE and getting a "declaration does not declare anything" warning.. Does this mean that anonymous structs are not supported?
code:
union rgb_t
{
struct { float r, g, b; };
float asArray[3];
};
Are there any flags or workarounds I'm missing?
Thanks!
Tyler