summaryrefslogtreecommitdiff
path: root/include/llvm/ADT/SparseBitVector.h
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2009-07-24 09:53:24 +0000
committerDaniel Dunbar <daniel@zuster.org>2009-07-24 09:53:24 +0000
commit3f0e83067d7938f742d21e14fc87c006d2fc3161 (patch)
tree0e2a8ee846b77708fb133710defbe6da510b37ae /include/llvm/ADT/SparseBitVector.h
parentf6ccee5a9d2b9573f679bca6266ade3eb8cd3f88 (diff)
downloadllvm-3f0e83067d7938f742d21e14fc87c006d2fc3161.tar.gz
llvm-3f0e83067d7938f742d21e14fc87c006d2fc3161.tar.bz2
llvm-3f0e83067d7938f742d21e14fc87c006d2fc3161.tar.xz
Move to raw_ostream.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@76963 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/ADT/SparseBitVector.h')
-rw-r--r--include/llvm/ADT/SparseBitVector.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/include/llvm/ADT/SparseBitVector.h b/include/llvm/ADT/SparseBitVector.h
index 6230135131..bcb4aac8fb 100644
--- a/include/llvm/ADT/SparseBitVector.h
+++ b/include/llvm/ADT/SparseBitVector.h
@@ -18,10 +18,11 @@
#include <cassert>
#include <climits>
#include <cstring>
-#include "llvm/Support/DataTypes.h"
#include "llvm/ADT/STLExtras.h"
-#include "llvm/Support/MathExtras.h"
#include "llvm/ADT/ilist.h"
+#include "llvm/Support/DataTypes.h"
+#include "llvm/Support/MathExtras.h"
+#include "llvm/Support/raw_ostream.h"
namespace llvm {
@@ -887,7 +888,7 @@ operator-(const SparseBitVector<ElementSize> &LHS,
// Dump a SparseBitVector to a stream
template <unsigned ElementSize>
-void dump(const SparseBitVector<ElementSize> &LHS, llvm::OStream &out) {
+void dump(const SparseBitVector<ElementSize> &LHS, raw_ostream &out) {
out << "[ ";
typename SparseBitVector<ElementSize>::iterator bi;