* doc/extend.texi (Arrays of Length Zero): Add missing comma.
From-SVN: r219191
This commit is contained in:
parent
1e3b6a3dbc
commit
248d139137
2 changed files with 5 additions and 1 deletions
|
@ -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.
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue