From 21be92d260b77820c01a798d41a8ad829068905b Mon Sep 17 00:00:00 2001 From: Bill Wendling Date: Mon, 18 Dec 2006 21:59:00 +0000 Subject: [PATCH] Removed llvm_ostream and used std::ostream instead. llvm-svn: 32658 --- llvm/include/llvm/ADT/BitSetVector.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/include/llvm/ADT/BitSetVector.h b/llvm/include/llvm/ADT/BitSetVector.h index 21d3cc9e7b0f..e9f8a15819ea 100644 --- a/llvm/include/llvm/ADT/BitSetVector.h +++ b/llvm/include/llvm/ADT/BitSetVector.h @@ -244,7 +244,7 @@ public: }; -inline void BitSetVector::print(llvm_ostream& O) const +inline void BitSetVector::print(std::ostream& O) const { for (std::vector::const_iterator I=bitsetVec.begin(), E=bitsetVec.end(); I != E; ++I)