~abyxcos/cstyle

5c11c2d29115054b958ceca2bfb5ed111f6c783e — Drew DeVault 3 years ago 49e39f2
Clarify anonymous struct usage
1 files changed, 4 insertions(+), 0 deletions(-)

M README.md
M README.md => README.md +4 -0
@@ 753,6 753,10 @@ struct my_struct {
        int a, b,c;
    } nested_struct;

    struct {
      int a, b, c;
    }; /* Anonymous */

    union {
        int a, b,c;
    } nested_union;