diff options
author | Jonathan Wakely <jwakely.gcc@gmail.com> | 2011-07-06 18:40:36 +0000 |
---|---|---|
committer | Jonathan Wakely <redi@gcc.gnu.org> | 2011-07-06 19:40:36 +0100 |
commit | 49d6830d664be5feaf0537d7b310d5c6d5e9fc65 (patch) | |
tree | ad76b30309ab51c78b4d0b209f5de038d47f6a79 /gcc/doc | |
parent | d75dae75d741eb852f400ccda88079bc3f26a3ad (diff) | |
download | gcc-49d6830d664be5feaf0537d7b310d5c6d5e9fc65.zip gcc-49d6830d664be5feaf0537d7b310d5c6d5e9fc65.tar.gz gcc-49d6830d664be5feaf0537d7b310d5c6d5e9fc65.tar.bz2 |
re PR other/49658 (Typo in gcc/doc/extend.texi)
2011-07-06 Jonathan Wakely <jwakely.gcc@gmail.com>
PR other/49658
* doc/extend.texi (Compound Literals): Fix typo.
From-SVN: r175928
Diffstat (limited to 'gcc/doc')
-rw-r--r-- | gcc/doc/extend.texi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/doc/extend.texi b/gcc/doc/extend.texi index 5b80616..1817f51 100644 --- a/gcc/doc/extend.texi +++ b/gcc/doc/extend.texi @@ -1629,7 +1629,7 @@ such an initializer, as shown here: char **foo = (char *[]) @{ "x", "y", "z" @}; @end smallexample -Compound literals for scalar types and union types are is +Compound literals for scalar types and union types are also allowed, but then the compound literal is equivalent to a cast. |