diff --git a/docs/CodingStandards.html b/docs/CodingStandards.html index f6316194bf6..6cfe5428356 100644 --- a/docs/CodingStandards.html +++ b/docs/CodingStandards.html @@ -512,7 +512,8 @@ library. There are two problems with this:

more pressure on the VM system on low-memory machines. - +
+
@@ -553,19 +554,21 @@ dump(DOUT); - - +stream is cnull.
Old Way
llvm::StringStream
void print(std::ostream &Out);
+      
void print(std::ostream &Out);
 // ...
 print(std::cerr);
void print(std::ostream &Out);
+      
void print(std::ostream &Out);
 void print(std::ostream *Out) { if (Out) print(*Out) }
 // ...
 print(llvm::cerr);
-
    N.B. The second print method is called by the print +
    +N.B. The second print method is called by the print expression. It prevents the execution of the first print method if the -stream is cnull.
+