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/API | |
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/API')
-rw-r--r-- | lldb/source/API/SBTarget.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/API/SBTarget.cpp b/lldb/source/API/SBTarget.cpp index 2d6ff523b06..2502e93abf2 100644 --- a/lldb/source/API/SBTarget.cpp +++ b/lldb/source/API/SBTarget.cpp @@ -1958,7 +1958,7 @@ SBTarget::FindTypes (const char* type) SymbolContext sc; TypeList type_list; - uint32_t num_matches = images.FindTypes2 (sc, + uint32_t num_matches = images.FindTypes (sc, name_const, exact_match, UINT32_MAX, |