* doc/extend.texi (Arrays of Length Zero): Add missing comma.

From-SVN: r219191
This commit is contained in:
Marek Polacek 2015-01-05 13:22:27 +00:00 committed by Marek Polacek
parent 1e3b6a3dbc
commit 248d139137
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2015-01-05 Marek Polacek <polacek@redhat.com>
* doc/extend.texi (Arrays of Length Zero): Add missing comma.
2015-01-05 Jakub Jelinek <jakub@redhat.com>
Update copyright years.

View File

@ -1544,7 +1544,7 @@ struct bar @{ struct foo z; @};
struct foo a = @{ 1, @{ 2, 3, 4 @} @}; // @r{Valid.}
struct bar b = @{ @{ 1, @{ 2, 3, 4 @} @} @}; // @r{Invalid.}
struct bar c = @{ @{ 1, @{ @} @} @}; // @r{Valid.}
struct foo d[1] = @{ @{ 1 @{ 2, 3, 4 @} @} @}; // @r{Invalid.}
struct foo d[1] = @{ @{ 1, @{ 2, 3, 4 @} @} @}; // @r{Invalid.}
@end smallexample
@node Empty Structures