[Lldb-commits] [lldb] r180212 - Fixed a build problem.
Sean Callanan
scallanan at apple.com
Wed Apr 24 12:26:29 PDT 2013
Author: spyffe
Date: Wed Apr 24 14:26:29 2013
New Revision: 180212
URL: http://llvm.org/viewvc/llvm-project?rev=180212&view=rev
Log:
Fixed a build problem.
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=180212&r1=180211&r2=180212&view=diff
==============================================================================
--- lldb/trunk/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV2.cpp (original)
+++ lldb/trunk/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV2.cpp Wed Apr 24 14:26:29 2013
@@ -2347,7 +2347,7 @@ AppleObjCRuntimeV2::LookupRuntimeSymbol
{
llvm::StringRef class_skipped_prefix = name_strref.substr(class_prefix.size());
const ConstString class_name_cs(class_skipped_prefix);
- ClassDescriptorSP descriptor = ObjCLanguageRuntime::GetClassDescriptor(class_name_cs);
+ ClassDescriptorSP descriptor = GetClassDescriptorFromClassName(class_name_cs);
if (descriptor)
ret = descriptor->GetISA();
More information about the lldb-commits
mailing list