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 | c6ebd38219ab19934697d8d416095a5db6a6e181 (patch) | |
tree | 0e2a8ee846b77708fb133710defbe6da510b37ae /include/llvm/ADT | |
parent | 1e13b9756098b2d657c09fc2910dd66f255d9592 (diff) | |
download | external_llvm-c6ebd38219ab19934697d8d416095a5db6a6e181.zip external_llvm-c6ebd38219ab19934697d8d416095a5db6a6e181.tar.gz external_llvm-c6ebd38219ab19934697d8d416095a5db6a6e181.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')
-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; |