aboutsummaryrefslogtreecommitdiff
path: root/include/llvm/ADT/BitSetVector.h
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2006-12-18 21:59:00 +0000
committerBill Wendling <isanbard@gmail.com>2006-12-18 21:59:00 +0000
commitfc04e5ead38ee6dbce6996efbec9298a01416a38 (patch)
tree26a2daf40b0f83a0206de0db0a22f8158b193614 /include/llvm/ADT/BitSetVector.h
parentd71b620c6c0977f1b73f4aaf7d5106a567c87ff9 (diff)
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
Diffstat (limited to 'include/llvm/ADT/BitSetVector.h')
-rw-r--r--include/llvm/ADT/BitSetVector.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/ADT/BitSetVector.h b/include/llvm/ADT/BitSetVector.h
index 21d3cc9e7b..e9f8a15819 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<bitword>::const_iterator
I=bitsetVec.begin(), E=bitsetVec.end(); I != E; ++I)