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/Core/ModuleList.cpp | |
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/Core/ModuleList.cpp')
-rw-r--r-- | lldb/source/Core/ModuleList.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Core/ModuleList.cpp b/lldb/source/Core/ModuleList.cpp index b612a0cd9d8..21f192e80bc 100644 --- a/lldb/source/Core/ModuleList.cpp +++ b/lldb/source/Core/ModuleList.cpp @@ -352,7 +352,7 @@ ModuleList::FindModule (const UUID &uuid) uint32_t -ModuleList::FindTypes2 (const SymbolContext& sc, const ConstString &name, bool name_is_fully_qualified, uint32_t max_matches, TypeList& types) +ModuleList::FindTypes (const SymbolContext& sc, const ConstString &name, bool name_is_fully_qualified, uint32_t max_matches, TypeList& types) { Mutex::Locker locker(m_modules_mutex); |