diff options
author | Bill Wendling <isanbard@gmail.com> | 2008-03-25 18:16:52 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2008-03-25 18:16:52 +0000 |
commit | 1de8c3d189b1dba1266b8295d36649d403d7d177 (patch) | |
tree | 5e190a18c168cd61dc0ece1b0e138cc9eb68694d /include | |
parent | d0088429325fea57087191b91b1be2119a608e58 (diff) | |
download | external_llvm-1de8c3d189b1dba1266b8295d36649d403d7d177.zip external_llvm-1de8c3d189b1dba1266b8295d36649d403d7d177.tar.gz external_llvm-1de8c3d189b1dba1266b8295d36649d403d7d177.tar.bz2 |
De-constify the input to the "operator >>" method as it is modified.
Patch by dekruijf@cs.wisc.edu!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@48782 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-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; } |