[llvm-commits] [llvm] r42229 - /llvm/trunk/docs/CodingStandards.html

Bill Wendling isanbard at gmail.com
Sat Sep 22 03:03:26 PDT 2007


Author: void
Date: Sat Sep 22 05:03:25 2007
New Revision: 42229

URL: http://llvm.org/viewvc/llvm-project?rev=42229&view=rev
Log:
Validation fixes

Modified:
    llvm/trunk/docs/CodingStandards.html

Modified: llvm/trunk/docs/CodingStandards.html
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/CodingStandards.html?rev=42229&r1=42228&r2=42229&view=diff

==============================================================================
--- llvm/trunk/docs/CodingStandards.html (original)
+++ llvm/trunk/docs/CodingStandards.html Sat Sep 22 05:03:25 2007
@@ -512,7 +512,8 @@
       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 @@
       <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>
 





More information about the llvm-commits mailing list