Inner struct flattening bug
|
Variables | |
struct { | |
int x | |
int y | |
struct { | |
float a | |
float b | |
} innerVariant_1 | |
} | outerVariant_1 |
struct { | |
int x | |
struct { | |
int y | |
float a | |
float b | |
} innerVariant_2 | |
} | outerVariant_2 |
struct { ... } outerVariant_1 |
The flattened structure looks like this:
struct { ... } outerVariant_2 |
The flattened structure looks like this: