diff options
| author | Enrico Granata <egranata@apple.com> | 2016-04-14 01:23:01 +0000 |
|---|---|---|
| committer | Enrico Granata <egranata@apple.com> | 2016-04-14 01:23:01 +0000 |
| commit | efcac211e520ff7fa566ea9fb98c21bcca58d722 (patch) | |
| tree | cc010a20d0f973a9a9015537e5a8f2217f268999 | |
| parent | 46b0f03e12614c3e67bbf16a6e278105f4edd01f (diff) | |
| download | bcm5719-llvm-efcac211e520ff7fa566ea9fb98c21bcca58d722.tar.gz bcm5719-llvm-efcac211e520ff7fa566ea9fb98c21bcca58d722.zip | |
Don't use auto - (try to) appease the Android g++ bot
llvm-svn: 266271
| -rw-r--r-- | lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV2.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV2.cpp b/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV2.cpp index f2d5869ebf0..f6764ca95bc 100644 --- a/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV2.cpp +++ b/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV2.cpp @@ -596,7 +596,7 @@ protected: { auto iterators_pair = objc_runtime->GetDescriptorIteratorPair(); auto iterator = iterators_pair.first; - auto& stdout(result.GetOutputStream()); + Stream &stdout(result.GetOutputStream()); for(; iterator != iterators_pair.second; iterator++) { if (iterator->second) |

