From: Bill Wendling Date: Mon, 18 Dec 2006 21:59:00 +0000 (+0000) Subject: Removed llvm_ostream and used std::ostream instead. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=fc04e5ead38ee6dbce6996efbec9298a01416a38;p=oota-llvm.git 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 --- 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)