From fc04e5ead38ee6dbce6996efbec9298a01416a38 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. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32658 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/ADT/BitSetVector.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/llvm/ADT/BitSetVector.h b/include/llvm/ADT/BitSetVector.h index 21d3cc9e7b0..e9f8a15819e 100644 --- a/include/llvm/ADT/BitSetVector.h +++ b/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) -- 2.34.1