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;