aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonathan Wakely <jwakely@redhat.com>2014-07-18 16:52:01 +0100
committerJonathan Wakely <redi@gcc.gnu.org>2014-07-18 16:52:01 +0100
commit4ac2a3f0f7995ca4eb364fc3e76e292d703a0474 (patch)
tree4528c021139107de15d4ea1a11d8bd7cf194b5f2
parentefd3c368ab6b0da227c1b893ce9f411970f89ddc (diff)
downloadgcc-4ac2a3f0f7995ca4eb364fc3e76e292d703a0474.zip
gcc-4ac2a3f0f7995ca4eb364fc3e76e292d703a0474.tar.gz
gcc-4ac2a3f0f7995ca4eb364fc3e76e292d703a0474.tar.bz2
* doc/extend.texi (Template Instantiation): Remove stray parenthesis.
From-SVN: r212821
-rw-r--r--gcc/ChangeLog4
-rw-r--r--gcc/doc/extend.texi2
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 884f088..6350343 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,7 @@
+2014-07-18 Jonathan Wakely <jwakely@redhat.com>
+
+ * doc/extend.texi (Template Instantiation): Remove stray parenthesis.
+
2014-07-18 Chung-Ju Wu <jasonwucj@gmail.com>
* config/nds32/nds32.c (nds32_can_eliminate): Follow the
diff --git a/gcc/doc/extend.texi b/gcc/doc/extend.texi
index a47b316..53fab8d 100644
--- a/gcc/doc/extend.texi
+++ b/gcc/doc/extend.texi
@@ -18158,7 +18158,7 @@ syntax to support instantiation of the compiler support data for a
template class (i.e.@: the vtable) without instantiating any of its
members (with @code{inline}), and instantiation of only the static data
members of a template class, without the support data or member
-functions (with (@code{static}):
+functions (with @code{static}):
@smallexample
extern template int max (int, int);