aboutsummaryrefslogtreecommitdiff
path: root/include/llvm/Bytecode/WriteBytecodePass.h
diff options
context:
space:
mode:
authorAnand Shukla <ashukla@cs.uiuc.edu>2002-06-25 20:22:25 +0000
committerAnand Shukla <ashukla@cs.uiuc.edu>2002-06-25 20:22:25 +0000
commit4a9f9337511441af0624e754ad9b2b1262ee584d (patch)
tree0fe60ad7a0dbfb4dad68bd8f1e57948f5b9e708d /include/llvm/Bytecode/WriteBytecodePass.h
parentb7c6c2a5cc5c7d11243a14a5c01859b1a506ac0c (diff)
changes to make it compatible with 64bit gcc
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2786 91177308-0d34-0410-b5e6-96231b3b80d8
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) {
}