Removed namespace qualification from symbol queries.

llvm-svn: 141866
This commit is contained in:
Sean Callanan
2011-10-13 16:49:47 +00:00
parent adcf7c9203
commit b96ff33b0e
8 changed files with 11 additions and 29 deletions

View File

@@ -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();
}