Inner struct flattening bug
 All Files Variables
Variables
variant_1.h File Reference

doxygen "flattens" nested structs (1) More...

Go to the source code of this file.

Variables

struct {
   int   x
 
   int   y
 
   struct {
      float   a
 
      float   b
 
   }   innerVariant_1
 
outerVariant_1
 

Detailed Description

doxygen "flattens" nested structs (1)

Variable Documentation

struct { ... } outerVariant_1

The flattened structure looks like this:

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