We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 81490fb commit 7e98454Copy full SHA for 7e98454
lldb/source/Symbol/Symtab.cpp
@@ -741,8 +741,7 @@ uint32_t Symtab::AppendSymbolIndexesWithNameAndType(
741
symbol_visibility, indexes) > 0 &&
742
symbol_type != eSymbolTypeAny) {
743
llvm::erase_if(indexes, [this, symbol_type](uint32_t index) {
744
- return symbol_type != eSymbolTypeAny &&
745
- m_symbols[index].GetType() != symbol_type;
+ return m_symbols[index].GetType() != symbol_type;
746
});
747
}
748
return indexes.size();
0 commit comments