diff options
author | Enrico Granata <egranata@apple.com> | 2014-11-21 22:23:08 +0000 |
---|---|---|
committer | Enrico Granata <egranata@apple.com> | 2014-11-21 22:23:08 +0000 |
commit | 49a6746942e164ddd1ef8d69f0d167e508c5b770 (patch) | |
tree | d6d2445517f0ed5f66717a2bd23ef6785ae20f97 /lldb/scripts/Python/interface | |
parent | 6596ba79339fe2c155fd5337cd9ba3dfc6013d4d (diff) | |
download | bcm5719-llvm-49a6746942e164ddd1ef8d69f0d167e508c5b770.tar.gz bcm5719-llvm-49a6746942e164ddd1ef8d69f0d167e508c5b770.zip |
Per off-list feedback, this API returns the *first* value with a given name, not the *only* one. Rename it to reflect that
llvm-svn: 222582
Diffstat (limited to 'lldb/scripts/Python/interface')
-rw-r--r-- | lldb/scripts/Python/interface/SBValueList.i | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/scripts/Python/interface/SBValueList.i b/lldb/scripts/Python/interface/SBValueList.i index 12aed864830..0ba9b7962b7 100644 --- a/lldb/scripts/Python/interface/SBValueList.i +++ b/lldb/scripts/Python/interface/SBValueList.i @@ -98,7 +98,7 @@ public: FindValueObjectByUID (lldb::user_id_t uid); lldb::SBValue - GetValueByName (const char* name) const; + GetFirstValueByName (const char* name) const; %pythoncode %{ def __len__(self): |