diff options
author | Bill Wendling <isanbard@gmail.com> | 2007-09-22 10:03:25 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2007-09-22 10:03:25 +0000 |
commit | bdd6bd8236abd3ba2d8b3b747ef31d802f7e45c4 (patch) | |
tree | 1b331eae09edda559078c3a607f1522d4681359c /llvm/docs/CodingStandards.html | |
parent | 370dac7346c85fb406295a30753bc23a467dc5df (diff) | |
download | bcm5719-llvm-bdd6bd8236abd3ba2d8b3b747ef31d802f7e45c4.tar.gz bcm5719-llvm-bdd6bd8236abd3ba2d8b3b747ef31d802f7e45c4.zip |
Validation fixes
llvm-svn: 42229
Diffstat (limited to 'llvm/docs/CodingStandards.html')
-rw-r--r-- | llvm/docs/CodingStandards.html | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/llvm/docs/CodingStandards.html b/llvm/docs/CodingStandards.html index f6316194bf6..6cfe5428356 100644 --- a/llvm/docs/CodingStandards.html +++ b/llvm/docs/CodingStandards.html @@ -512,7 +512,8 @@ library. There are two problems with this:</p> more pressure on the VM system on low-memory machines.</li> </ol> -<table align="center"> +<div style="align: center"> +<table> <tbody> <tr> <th>Old Way</th> @@ -553,19 +554,21 @@ dump(DOUT);</pre></td> <td align="left"><pre>llvm::StringStream</pre></td> </tr> <tr> - <td align="left"><pre>void print(std::ostream &Out); + <td align="left"><pre>void print(std::ostream &Out); // ... print(std::cerr);</pre></td> - <td align="left"><pre>void print(std::ostream &Out); + <td align="left"><pre>void print(std::ostream &Out); void print(std::ostream *Out) { if (Out) print(*Out) } // ... print(llvm::cerr);</pre> -<ul><i>N.B.</i> The second <tt>print</tt> method is called by the <tt>print</tt> +<div class="doc_text"> +<i>N.B.</i> The second <tt>print</tt> method is called by the <tt>print</tt> expression. It prevents the execution of the first <tt>print</tt> method if the -stream is <tt>cnull</tt>.</ul></td> +stream is <tt>cnull</tt>.</div></td> </tbody> </table> +</div> </div> |