[Lldb-commits] [PATCH] D87545: [lldb] Use GetNonKVOClassDescriptor to get the NSDictionary class descriptor

Jonas Devlieghere via Phabricator via lldb-commits lldb-commits at lists.llvm.org
Fri Sep 11 13:23:04 PDT 2020


JDevlieghere updated this revision to Diff 291325.
JDevlieghere added a comment.

Remove spurious change


CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D87545/new/

https://reviews.llvm.org/D87545

Files:
  lldb/source/Plugins/Language/ObjC/NSDictionary.cpp


Index: lldb/source/Plugins/Language/ObjC/NSDictionary.cpp
===================================================================
--- lldb/source/Plugins/Language/ObjC/NSDictionary.cpp
+++ lldb/source/Plugins/Language/ObjC/NSDictionary.cpp
@@ -388,7 +388,7 @@
     return false;
 
   ObjCLanguageRuntime::ClassDescriptorSP descriptor(
-      runtime->GetClassDescriptor(valobj));
+      runtime->GetNonKVOClassDescriptor(valobj));
 
   if (!descriptor || !descriptor->IsValid())
     return false;


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D87545.291325.patch
Type: text/x-patch
Size: 494 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20200911/5501437f/attachment.bin>


More information about the lldb-commits mailing list