From: Bill Wendling
Date: Sat, 9 Dec 2006 01:27:51 +0000 (+0000)
Subject: Another example of using the llvm IO streams.
X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=0f7c10d7b6c553cd92c3abadd7e23c45edbcbfd2;p=oota-llvm.git
Another example of using the llvm IO streams.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32391 91177308-0d34-0410-b5e6-96231b3b80d8
---
diff --git a/docs/CodingStandards.html b/docs/CodingStandards.html
index 40d08383a83..72ca77535d4 100644
--- a/docs/CodingStandards.html
+++ b/docs/CodingStandards.html
@@ -547,6 +547,13 @@ library. There are two problems with this:
std::stringstream |
llvm::StringStream |
+
+ void print(std::ostream &Out);
+// ...
+print(std::cerr); |
+ void print(std::ostream &Out);
+// ...
+print(*llvm::cerr.stream()); |