[Lldb-commits] [lldb] r266271 - Don't use auto - (try to) appease the Android g++ bot
Enrico Granata via lldb-commits
lldb-commits at lists.llvm.org
Wed Apr 13 18:23:02 PDT 2016
Author: enrico
Date: Wed Apr 13 20:23:01 2016
New Revision: 266271
URL: http://llvm.org/viewvc/llvm-project?rev=266271&view=rev
Log:
Don't use auto - (try to) appease the Android g++ bot
Modified:
lldb/trunk/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV2.cpp
Modified: lldb/trunk/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV2.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV2.cpp?rev=266271&r1=266270&r2=266271&view=diff
==============================================================================
--- lldb/trunk/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV2.cpp (original)
+++ lldb/trunk/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV2.cpp Wed Apr 13 20:23:01 2016
@@ -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)
More information about the lldb-commits
mailing list