[Lldb-commits] [lldb] r236646 - I forgot to return here, so do it, and appease the compiler
Enrico Granata
egranata at apple.com
Wed May 6 14:54:18 PDT 2015
Author: enrico
Date: Wed May 6 16:54:18 2015
New Revision: 236646
URL: http://llvm.org/viewvc/llvm-project?rev=236646&view=rev
Log:
I forgot to return here, so do it, and appease the compiler
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=236646&r1=236645&r2=236646&view=diff
==============================================================================
--- lldb/trunk/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV2.cpp (original)
+++ lldb/trunk/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV2.cpp Wed May 6 16:54:18 2015
@@ -497,6 +497,7 @@ protected:
}
}
result.SetStatus(lldb::eReturnStatusSuccessFinishResult);
+ return true;
}
else
{
More information about the lldb-commits
mailing list