summaryrefslogtreecommitdiff
path: root/docs/CodingStandards.html
diff options
context:
space:
mode:
Diffstat (limited to 'docs/CodingStandards.html')
-rw-r--r--docs/CodingStandards.html7
1 files changed, 7 insertions, 0 deletions
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:</p>
<td align="left"><pre>std::stringstream</pre></td>
<td align="left"><pre>llvm::StringStream</pre></td>
</tr>
+ <tr>
+ <td align="left"><pre>void print(std::ostream &Out);
+// ...
+print(std::cerr);</pre></td>
+ <td align="left"><pre>void print(std::ostream &Out);
+// ...
+print(*llvm::cerr.stream());</pre></td>
</tbody>
</table>