diff options
| author | Greg Clayton <gclayton@apple.com> | 2012-04-06 17:41:13 +0000 |
|---|---|---|
| committer | Greg Clayton <gclayton@apple.com> | 2012-04-06 17:41:13 +0000 |
| commit | 29399a24c62fd8408bf5ea172d946f0742b173ea (patch) | |
| tree | bbecbce88e86111e4eb4c5c1a0403a551c1b6226 /lldb/source/Plugins/LanguageRuntime/ObjC | |
| parent | 55995ebb58d852fcdf08b4d0e57d74a51973e811 (diff) | |
| download | bcm5719-llvm-29399a24c62fd8408bf5ea172d946f0742b173ea.tar.gz bcm5719-llvm-29399a24c62fd8408bf5ea172d946f0742b173ea.zip | |
In a prior commit, I changed the parameters around on a ModuleList::FindTypes where the old parameters that existing clients were using would have been compatible, so I renamed ModuleList::FindTypes to ModuleList::FindTypes2. Then I made fixes and verified I updated and fixed all client code, but I forgot to rename the function back to ModuleList::FindTypes(). I am doing that now and also cleaning up the C++ dynamic type code a bit.
llvm-svn: 154182
Diffstat (limited to 'lldb/source/Plugins/LanguageRuntime/ObjC')
| -rw-r--r-- | lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV2.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV2.cpp b/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV2.cpp index 8d92a9bcfe8..2e46279cefd 100644 --- a/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV2.cpp +++ b/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV2.cpp @@ -350,7 +350,7 @@ AppleObjCRuntimeV2::GetDynamicTypeAndAddress (ValueObject &in_value, TypeList class_types; SymbolContext sc; const bool exact_match = true; - uint32_t num_matches = target.GetImages().FindTypes2 (sc, + uint32_t num_matches = target.GetImages().FindTypes (sc, class_type_or_name.GetName(), exact_match, UINT32_MAX, |

