diff options
author | Daniel Dunbar <daniel@zuster.org> | 2009-07-24 09:53:24 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2009-07-24 09:53:24 +0000 |
commit | 3f0e83067d7938f742d21e14fc87c006d2fc3161 (patch) | |
tree | 0e2a8ee846b77708fb133710defbe6da510b37ae /include/llvm/ADT/SparseBitVector.h | |
parent | f6ccee5a9d2b9573f679bca6266ade3eb8cd3f88 (diff) | |
download | external_llvm-3f0e83067d7938f742d21e14fc87c006d2fc3161.zip external_llvm-3f0e83067d7938f742d21e14fc87c006d2fc3161.tar.gz external_llvm-3f0e83067d7938f742d21e14fc87c006d2fc3161.tar.bz2 |
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.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/include/llvm/ADT/SparseBitVector.h b/include/llvm/ADT/SparseBitVector.h index 6230135..bcb4aac 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; |