aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGerald Pfeifer <gerald@pfeifer.com>2012-08-26 15:36:33 +0000
committerGerald Pfeifer <gerald@gcc.gnu.org>2012-08-26 15:36:33 +0000
commit6c78166162a99f2cc511a7335628fb36b088ed96 (patch)
tree8b2367684da4b549f76d9bed0028688220a52050
parentae1fab9c83cbd67d0ced13b259756b7b9a513e79 (diff)
downloadgcc-6c78166162a99f2cc511a7335628fb36b088ed96.zip
gcc-6c78166162a99f2cc511a7335628fb36b088ed96.tar.gz
gcc-6c78166162a99f2cc511a7335628fb36b088ed96.tar.bz2
* doc/invoke.texi (C++ Dialect Options): Add missing space.
From-SVN: r190692
-rw-r--r--gcc/ChangeLog4
-rw-r--r--gcc/doc/invoke.texi2
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 0468d01..fe032c4 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,7 @@
+2012-08-26 Gerald Pfeifer <gerald@pfeifer.com>
+
+ * doc/invoke.texi (C++ Dialect Options): Add missing space.
+
2012-08-25 Eric Botcazou <ebotcazou@adacore.com>
PR rtl-optimization/54088
diff --git a/gcc/doc/invoke.texi b/gcc/doc/invoke.texi
index b6d6b40..daf9a5d 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.