[llvm-commits] CVS: llvm/include/llvm/ADT/BitSetVector.h

Bill Wendling isanbard at gmail.com
Mon Dec 18 13:59:15 PST 2006



Changes in directory llvm/include/llvm/ADT:

BitSetVector.h updated: 1.19 -> 1.20
---
Log message:

Removed llvm_ostream and used std::ostream instead.


---
Diffs of the changes:  (+1 -1)

 BitSetVector.h |    2 +-
 1 files changed, 1 insertion(+), 1 deletion(-)


Index: llvm/include/llvm/ADT/BitSetVector.h
diff -u llvm/include/llvm/ADT/BitSetVector.h:1.19 llvm/include/llvm/ADT/BitSetVector.h:1.20
--- llvm/include/llvm/ADT/BitSetVector.h:1.19	Sat Dec 16 23:15:12 2006
+++ llvm/include/llvm/ADT/BitSetVector.h	Mon Dec 18 15:59:00 2006
@@ -244,7 +244,7 @@
 };
 
 
-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)






More information about the llvm-commits mailing list