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

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

Go to the source code of this file.

Variables

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

Detailed Description

doxygen "flattens" nested structs (2)

Variable Documentation

struct { ... } outerVariant_2

The flattened structure looks like this:

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