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. |
+stream is cnull. |