summaryrefslogtreecommitdiff
path: root/include/llvm/Bytecode/WriteBytecodePass.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/llvm/Bytecode/WriteBytecodePass.h')
-rw-r--r--include/llvm/Bytecode/WriteBytecodePass.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/Bytecode/WriteBytecodePass.h b/include/llvm/Bytecode/WriteBytecodePass.h
index 297fbb76e1..3e6d7fef71 100644
--- a/include/llvm/Bytecode/WriteBytecodePass.h
+++ b/include/llvm/Bytecode/WriteBytecodePass.h
@@ -12,10 +12,10 @@
#include "llvm/Bytecode/Writer.h"
class WriteBytecodePass : public Pass {
- ostream *Out; // ostream to print on
+ std::ostream *Out; // ostream to print on
bool DeleteStream;
public:
- inline WriteBytecodePass(ostream *o = &cout, bool DS = false)
+ inline WriteBytecodePass(std::ostream *o = &std::cout, bool DS = false)
: Out(o), DeleteStream(DS) {
}