diff options
Diffstat (limited to 'include/llvm/ADT/BitSetVector.h')
-rw-r--r-- | include/llvm/ADT/BitSetVector.h | 2 |
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) |