diff options
Diffstat (limited to 'include/llvm/Support/Streams.h')
-rw-r--r-- | include/llvm/Support/Streams.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/Support/Streams.h b/include/llvm/Support/Streams.h index 1200022..46bac8b 100644 --- a/include/llvm/Support/Streams.h +++ b/include/llvm/Support/Streams.h @@ -46,7 +46,7 @@ namespace llvm { } template <typename Ty> - BaseStream &operator >> (const Ty &Thing) { + BaseStream &operator >> (Ty &Thing) { if (Stream) *Stream >> Thing; return *this; } |