diff options
author | Enrico Granata <egranata@apple.com> | 2012-04-25 17:53:41 +0000 |
---|---|---|
committer | Enrico Granata <egranata@apple.com> | 2012-04-25 17:53:41 +0000 |
commit | 7d2222175914bee03d2aa191427d6c397cc2d617 (patch) | |
tree | 36f6ef4991f38a8ac53544debe12b3f59edfcab1 /lldb/examples/summaries/cocoa/CFArray.py | |
parent | 4ff88c67e0f4904d0f99c97e5b348cd202fca3e3 (diff) | |
download | bcm5719-llvm-7d2222175914bee03d2aa191427d6c397cc2d617.tar.gz bcm5719-llvm-7d2222175914bee03d2aa191427d6c397cc2d617.zip |
Returning data formatters to their previous working condition - Plus fixing an issue that was preventing Python oneliners from executing
llvm-svn: 155563
Diffstat (limited to 'lldb/examples/summaries/cocoa/CFArray.py')
-rw-r--r-- | lldb/examples/summaries/cocoa/CFArray.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/examples/summaries/cocoa/CFArray.py b/lldb/examples/summaries/cocoa/CFArray.py index 45d18b50126..da2b6ae24d6 100644 --- a/lldb/examples/summaries/cocoa/CFArray.py +++ b/lldb/examples/summaries/cocoa/CFArray.py @@ -152,10 +152,10 @@ class NSArray_SynthProvider: logger = lldb.formatters.Logger.Logger() if self.valobj.GetValueAsUnsigned() == 0: self.error = True - return objc_runtime.InvalidPointer_Description(True) + returnlldb.runtime.objc.objc_runtime.InvalidPointer_Description(True) else: global statistics - class_data,wrapper = objc_runtime.Utilities.prepare_class_detection(self.valobj,statistics) + class_data,wrapper =lldb.runtime.objc.objc_runtime.Utilities.prepare_class_detection(self.valobj,statistics) if wrapper: self.error = True return wrapper |