changes to make it compatible with 64bit gcc
[oota-llvm.git] / include / llvm / Bytecode / WriteBytecodePass.h
index 297fbb76e1766644b17a78982e76673cf24b4488..3e6d7fef7150f6f8dfff16f169106bd038732d00 100644 (file)
 #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) {
   }