[ORC] Fix SymbolLookupSet::containsDuplicates()

This commit is contained in:
Stefan Gränitz 2020-08-02 14:36:02 +02:00
parent 25bbceb047
commit 34a5669ccd
1 changed files with 1 additions and 1 deletions

View File

@ -287,7 +287,7 @@ public:
for (UnderlyingVector::size_type I = 1; I != Symbols.size(); ++I)
if (Symbols[I].first == Symbols[I - 1].first)
return true;
return true;
return false;
}
#endif