From: Gerald Pfeifer Date: Sun, 26 Aug 2012 15:36:33 +0000 (+0000) Subject: * doc/invoke.texi (C++ Dialect Options): Add missing space. X-Git-Tag: misc/gccgo-go1_1_2~1186 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=6c78166162a99f2cc511a7335628fb36b088ed96;p=thirdparty%2Fgcc.git * doc/invoke.texi (C++ Dialect Options): Add missing space. From-SVN: r190692 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 0468d01471c9..fe032c462938 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2012-08-26 Gerald Pfeifer + + * doc/invoke.texi (C++ Dialect Options): Add missing space. + 2012-08-25 Eric Botcazou PR rtl-optimization/54088 diff --git a/gcc/doc/invoke.texi b/gcc/doc/invoke.texi index b6d6b400bc19..daf9a5ddcc5a 100644 --- a/gcc/doc/invoke.texi +++ b/gcc/doc/invoke.texi @@ -2313,7 +2313,7 @@ struct B : public A @{ int f2 : 1; @}; @noindent In this case, G++ places @code{B::f2} into the same byte -as@code{A::f1}; other compilers do not. You can avoid this problem +as @code{A::f1}; other compilers do not. You can avoid this problem by explicitly padding @code{A} so that its size is a multiple of the byte size on your platform; that causes G++ and other compilers to lay out @code{B} identically.