summaryrefslogtreecommitdiff
path: root/docs/ProgrammersManual.html
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2004-11-01 08:19:36 +0000
committerReid Spencer <rspencer@reidspencer.com>2004-11-01 08:19:36 +0000
commitd3f876c93c9ce33899a9feca3c0e8de1a895008f (patch)
treecb49f62a70ad881be810557c06988ccd3a02cee8 /docs/ProgrammersManual.html
parent092217286f76b5c4c8c6758f475a66d84df17e11 (diff)
downloadllvm-d3f876c93c9ce33899a9feca3c0e8de1a895008f.tar.gz
llvm-d3f876c93c9ce33899a9feca3c0e8de1a895008f.tar.bz2
llvm-d3f876c93c9ce33899a9feca3c0e8de1a895008f.tar.xz
Minor format tweask for tables.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@17394 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/ProgrammersManual.html')
-rw-r--r--docs/ProgrammersManual.html16
1 files changed, 8 insertions, 8 deletions
diff --git a/docs/ProgrammersManual.html b/docs/ProgrammersManual.html
index c554c74963..8ff45c9f3f 100644
--- a/docs/ProgrammersManual.html
+++ b/docs/ProgrammersManual.html
@@ -1939,20 +1939,20 @@ however, are stored in a single dimension and accessed only by name.</p>
the beginning or end of the sequence for both const and non-const. It is
important to keep track of the different kinds of iterators. There are
three idioms worth pointing out:</p>
-<table class="doc_table">
+<table>
<tr><th>Units</th><th>Iterator</th><th>Idiom</th></tr>
<tr>
- <td>Planes Of name/Value maps</td><td>PI</td>
- <td><tt><pre>
+ <td align="left">Planes Of name/Value maps</td><td>PI</td>
+ <td align="left"><tt><pre>
for (SymbolTable::plane_const_iterator PI = ST.plane_begin(),
-PE = ST.plane_end(); PI != PE; ++PI ) {
+ PE = ST.plane_end(); PI != PE; ++PI ) {
PI-&gt;first // This is the Type* of the plane
PI-&gt;second // This is the SymbolTable::ValueMap of name/Value pairs
</pre></tt></td>
</tr>
<tr>
- <td>All name/Type Pairs</td><td>TI</td>
- <td><tt><pre>
+ <td align="left">All name/Type Pairs</td><td>TI</td>
+ <td align="left"><tt><pre>
for (SymbolTable::type_const_iterator TI = ST.type_begin(),
TE = ST.type_end(); TI != TE; ++TI )
TI-&gt;first // This is the name of the type
@@ -1960,8 +1960,8 @@ for (SymbolTable::type_const_iterator TI = ST.type_begin(),
</pre></tt></td>
</tr>
<tr>
- <td>name/Value pairs in a plane</td><td>VI</td>
- <td><tt><pre>
+ <td align="left">name/Value pairs in a plane</td><td>VI</td>
+ <td align="left"><tt><pre>
for (SymbolTable::value_const_iterator VI = ST.value_begin(SomeType),
VE = ST.value_end(SomeType); VI != VE; ++VI )
VI-&gt;first // This is the name of the Value