Skip to content

Commit

Permalink
Fix incorrect return value in TryMarkEntityProcessed_NoLock
Browse files Browse the repository at this point in the history
  • Loading branch information
mavasani committed Nov 8, 2022
1 parent ed443a8 commit 0f841ca
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -165,10 +165,9 @@ private static bool TryMarkEntityProcessed_NoLock<TAnalysisEntity, TAnalyzerStat

pendingEntities.Remove(analysisEntity);
FreeState_NoLock(state, pool);
return true;
}

return false;
return true;
}

private bool TryStartSyntaxAnalysis_NoLock(SourceOrAdditionalFile file, [NotNullWhen(returnValue: true)] out AnalyzerStateData? state)
Expand Down

0 comments on commit 0f841ca

Please sign in to comment.