summaryrefslogtreecommitdiff
path: root/include/llvm/Support/Streams.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/llvm/Support/Streams.h')
-rw-r--r--include/llvm/Support/Streams.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/include/llvm/Support/Streams.h b/include/llvm/Support/Streams.h
index 2444d5b6af..e9208644da 100644
--- a/include/llvm/Support/Streams.h
+++ b/include/llvm/Support/Streams.h
@@ -37,6 +37,11 @@ namespace llvm {
StreamTy *stream() const { return Stream; }
+ inline BaseStream &operator << (std::ios_base &(*Func)(std::ios_base&)) {
+ if (Stream) *Stream << Func;
+ return *this;
+ }
+
inline BaseStream &operator << (StreamTy &(*Func)(StreamTy&)) {
if (Stream) *Stream << Func;
return *this;