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
This commit is contained in:
Joseph Myers 2005-05-10 01:19:28 +01:00 committed by Joseph Myers
parent f11b939c65
commit 75b66a16fd
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2005-05-10 Joseph S. Myers <joseph@codesourcery.com>
PR other/21052
* doc/extend.texi (Type Attributes): Correct example syntax.
2005-05-09 Joseph S. Myers <joseph@codesourcery.com>
PR c/21160

View file

@ -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;