From: Joseph Myers Date: Tue, 10 May 2005 00:19:28 +0000 (+0100) Subject: re PR other/21052 (Example does not compile in user docs, type attributes, packed) X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=75b66a16fd2e317ccce9454a0fdf34e657e0abc0;p=gcc.git re PR other/21052 (Example does not compile in user docs, type attributes, packed) PR other/21052 * doc/extend.texi (Type Attributes): Correct example syntax. From-SVN: r99485 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 44126a221f8..b8997851c76 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2005-05-10 Joseph S. Myers + + PR other/21052 + * doc/extend.texi (Type Attributes): Correct example syntax. + 2005-05-09 Joseph S. Myers PR c/21160 diff --git a/gcc/doc/extend.texi b/gcc/doc/extend.texi index acd75e4f71b..c714c54b495 100644 --- a/gcc/doc/extend.texi +++ b/gcc/doc/extend.texi @@ -3253,7 +3253,7 @@ struct my_unpacked_struct int i; @}; -struct my_packed_struct __attribute__ ((__packed__)) +struct __attribute__ ((__packed__)) my_packed_struct @{ char c; int i;