1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 11:13:28 +01:00

Tweak, raw_ostream is a ostream, not iostream replacement

llvm-svn: 77017
This commit is contained in:
Daniel Dunbar 2009-07-24 23:54:34 +00:00
parent 5bf752cc30
commit 2d76dc5a14

View File

@ -948,10 +948,10 @@ it's better to use a literal <tt>'\n'</tt>.</p>
<p>LLVM includes a lightweight, simple, and efficient stream implementation
in <tt>llvm/Support/raw_ostream.h</tt> which provides all of the common features
of <tt>std::iostream</tt>. All new code should use <tt>raw_ostream</tt> instead
of <tt>iostream</tt>.</p>
of <tt>std::ostream</tt>. All new code should use <tt>raw_ostream</tt> instead
of <tt>ostream</tt>.</p>
<p>Unlike <tt>std::iostream</tt>, <tt>raw_ostream</tt> is not a template and can
<p>Unlike <tt>std::ostream</tt>, <tt>raw_ostream</tt> is not a template and can
be forward declared as <tt>class raw_ostream</tt>. Public headers should
generally not include the <tt>raw_ostream</tt> header, but use forward
declarations and constant references to <tt>raw_ostream</tt> instances.</p>