From 0f7c10d7b6c553cd92c3abadd7e23c45edbcbfd2 Mon Sep 17 00:00:00 2001 From: Bill Wendling Date: Sat, 9 Dec 2006 01:27:51 +0000 Subject: 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 --- docs/CodingStandards.html | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'docs/CodingStandards.html') diff --git a/docs/CodingStandards.html b/docs/CodingStandards.html index 40d08383a8..72ca77535d 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());
-- cgit v1.2.3