summaryrefslogtreecommitdiff
path: root/gcc/doc/trouble.texi
diff options
context:
space:
mode:
authorphython <phython@138bc75d-0d04-0410-961f-82ee72b054a4>2004-09-17 13:57:03 +0000
committerphython <phython@138bc75d-0d04-0410-961f-82ee72b054a4>2004-09-17 13:57:03 +0000
commit91acd86c1706c9202d2be725d75c2742f4ecf0a8 (patch)
treed254d5e86b9469d8a369289c381246c852a14b28 /gcc/doc/trouble.texi
parentd14524761ba1e4f3035019542ad7818dabad529c (diff)
downloadgcc-91acd86c1706c9202d2be725d75c2742f4ecf0a8.tar.gz
2004-09-17 James Morrison <phython@gcc.gnu.org>
* doc/cfg.texi: Use @smallexample. * doc/md.texi: Likewise. * doc/tree-ssa.texi: Likewise. * doc/extend.texi: Likewise. Use @r{} in comments. * doc/trouble.texi: Use @r{} in comments. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@87646 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/doc/trouble.texi')
-rw-r--r--gcc/doc/trouble.texi8
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/doc/trouble.texi b/gcc/doc/trouble.texi
index 8ce6afc01ee..90c4daacc5d 100644
--- a/gcc/doc/trouble.texi
+++ b/gcc/doc/trouble.texi
@@ -910,11 +910,11 @@ of instantiation. For example, consider
struct A @{
template <typename T>
void f () @{
- foo (1); // 1
- int i = N; // 2
+ foo (1); // @r{1}
+ int i = N; // @r{2}
T t;
- t.bar(); // 3
- foo (t); // 4
+ t.bar(); // @r{3}
+ foo (t); // @r{4}
@}
static const int N;