Inner struct flattening bug
 All Files Variables Groups
Variables
Nested struct flattening bug (1)

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
 

Detailed Description

Variable Documentation

struct { ... } outerVariant_1

The flattened structure looks like this:

struct {
int x;
int y;
float a;
float b;
} innerVariant_1;
struct { ... } outerVariant_2

The flattened structure looks like this:

struct {
int x;
int y;
float a;
float b;
} innerVariant_2;