* doc/extend.texi (Arrays of Length Zero): Add missing comma.
authorMarek Polacek <polacek@redhat.com>
Mon, 5 Jan 2015 13:22:27 +0000 (13:22 +0000)
committerMarek Polacek <mpolacek@gcc.gnu.org>
Mon, 5 Jan 2015 13:22:27 +0000 (13:22 +0000)
From-SVN: r219191

gcc/ChangeLog
gcc/doc/extend.texi

index 524d479ce72222483f24424d3aa47870aebfc364..e418275b9921a990ebf9789e269f12ad442b1987 100644 (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.
index 43eebb73760f72a7d0553f335597962ce87dafde..f68cd7f62854e6f3748caa70280b8427aa13dd7e 100644 (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