[llvm-commits] CVS: llvm/docs/CodingStandards.html

Bill Wendling isanbard at gmail.com
Fri Dec 8 17:28:06 PST 2006



Changes in directory llvm/docs:

CodingStandards.html updated: 1.30 -> 1.31
---
Log message:

Another example of using the llvm IO streams.


---
Diffs of the changes:  (+8 -1)

 CodingStandards.html |    9 ++++++++-
 1 files changed, 8 insertions(+), 1 deletion(-)


Index: llvm/docs/CodingStandards.html
diff -u llvm/docs/CodingStandards.html:1.30 llvm/docs/CodingStandards.html:1.31
--- llvm/docs/CodingStandards.html:1.30	Fri Dec  8 19:20:34 2006
+++ llvm/docs/CodingStandards.html	Fri Dec  8 19:27:51 2006
@@ -547,6 +547,13 @@
       <td align="left"><pre>std::stringstream</pre></td>
       <td align="left"><pre>llvm::StringStream</pre></td>
     </tr>
+    <tr>
+      <td align="left"><pre>void print(std::ostream &Out);
+// ...
+print(std::cerr);</pre></td>
+      <td align="left"><pre>void print(std::ostream &Out);
+// ...
+print(*llvm::cerr.stream());</pre></td>
   </tbody>
 </table>
 
@@ -744,7 +751,7 @@
 
   <a href="mailto:sabre at nondot.org">Chris Lattner</a><br>
   <a href="http://llvm.org">LLVM Compiler Infrastructure</a><br>
-  Last modified: $Date: 2006/12/09 01:20:34 $
+  Last modified: $Date: 2006/12/09 01:27:51 $
 </address>
 
 </body>






More information about the llvm-commits mailing list