From 4bd53c6479e96d0a9f8e4aadc820e282fee058fe Mon Sep 17 00:00:00 2001 From: Daniel Dunbar Date: Fri, 24 Jul 2009 23:54:34 +0000 Subject: [PATCH] Tweak, raw_ostream is a ostream, not iostream replacement llvm-svn: 77017 --- llvm/docs/CodingStandards.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/llvm/docs/CodingStandards.html b/llvm/docs/CodingStandards.html index 2d83f0b..f66a7c2 100644 --- a/llvm/docs/CodingStandards.html +++ b/llvm/docs/CodingStandards.html @@ -948,10 +948,10 @@ it's better to use a literal '\n'.

LLVM includes a lightweight, simple, and efficient stream implementation in llvm/Support/raw_ostream.h which provides all of the common features -of std::iostream. All new code should use raw_ostream instead -of iostream.

+of std::ostream. All new code should use raw_ostream instead +of ostream.

-

Unlike std::iostream, raw_ostream is not a template and can +

Unlike std::ostream, raw_ostream is not a template and can be forward declared as class raw_ostream. Public headers should generally not include the raw_ostream header, but use forward declarations and constant references to raw_ostream instances.

-- 2.7.4