Skip to content

Commit ad08a5f

Browse files
committed
Fix a condition-flip regression introduced in r373344.
llvm-svn: 373354
1 parent c7f19ca commit ad08a5f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lldb/source/Plugins/SymbolFile/DWARF/DWARFASTParserClang.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ TypeSP DWARFASTParserClang::ParseTypeFromDWO(const DWARFDIE &die, Log *log) {
152152
LanguageSet languages;
153153
languages.Insert(die.GetCU()->GetLanguageType());
154154
dwo_module_sp->GetSymbolFile()->FindTypes(decl_context, languages, dwo_types);
155-
if (dwo_types.GetSize()) {
155+
if (dwo_types.Empty()) {
156156
if (!IsClangModuleFwdDecl(die))
157157
return TypeSP();
158158

0 commit comments

Comments
 (0)