summaryrefslogtreecommitdiffstats
path: root/lldb/source/Core/ModuleList.cpp
diff options
context:
space:
mode:
authorSean Callanan <scallanan@apple.com>2011-10-13 16:49:47 +0000
committerSean Callanan <scallanan@apple.com>2011-10-13 16:49:47 +0000
commitb96ff33b0e4b73264b270ace256ffad8ab0522cb (patch)
tree250cadd8abc1a474b51144eae6341426aa753016 /lldb/source/Core/ModuleList.cpp
parentadcf7c92035e49e27065d577e58bc5d66e8aef4b (diff)
downloadbcm5719-llvm-b96ff33b0e4b73264b270ace256ffad8ab0522cb.tar.gz
bcm5719-llvm-b96ff33b0e4b73264b270ace256ffad8ab0522cb.zip
Removed namespace qualification from symbol queries.
llvm-svn: 141866
Diffstat (limited to 'lldb/source/Core/ModuleList.cpp')
-rw-r--r--lldb/source/Core/ModuleList.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Core/ModuleList.cpp b/lldb/source/Core/ModuleList.cpp
index 7c35c9b6ed3..f3a2f0fbfa6 100644
--- a/lldb/source/Core/ModuleList.cpp
+++ b/lldb/source/Core/ModuleList.cpp
@@ -254,7 +254,7 @@ ModuleList::FindSymbolsWithNameAndType (const ConstString &name,
sc_list.Clear();
collection::iterator pos, end = m_modules.end();
for (pos = m_modules.begin(); pos != end; ++pos)
- (*pos)->FindSymbolsWithNameAndType (name, NULL, symbol_type, sc_list);
+ (*pos)->FindSymbolsWithNameAndType (name, symbol_type, sc_list);
return sc_list.GetSize();
}
OpenPOWER on IntegriCloud