Removed llvm_ostream and used std::ostream instead.
authorBill Wendling <isanbard@gmail.com>
Mon, 18 Dec 2006 21:59:00 +0000 (21:59 +0000)
committerBill Wendling <isanbard@gmail.com>
Mon, 18 Dec 2006 21:59:00 +0000 (21:59 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32658 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/ADT/BitSetVector.h

index 21d3cc9e7b0fa142cde38e606cc3a43e3a2edc15..e9f8a15819eaa11731ee390451f5d6457407fc9a 100644 (file)
@@ -244,7 +244,7 @@ public:
 };
 
 
-inline void BitSetVector::print(llvm_ostream& O) const
+inline void BitSetVector::print(std::ostream& O) const
 {
   for (std::vector<bitword>::const_iterator
          I=bitsetVec.begin(), E=bitsetVec.end(); I != E; ++I)