diff options
author | phython <phython@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-09-17 13:57:03 +0000 |
---|---|---|
committer | phython <phython@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-09-17 13:57:03 +0000 |
commit | 91acd86c1706c9202d2be725d75c2742f4ecf0a8 (patch) | |
tree | d254d5e86b9469d8a369289c381246c852a14b28 /gcc/doc/trouble.texi | |
parent | d14524761ba1e4f3035019542ad7818dabad529c (diff) | |
download | gcc-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.texi | 8 |
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; |