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 fe62900 commit 46f1688Copy full SHA for 46f1688
csharp/extractor/Semmle.Extraction.CSharp/Extractor/Extractor.cs
@@ -134,7 +134,7 @@ private static ExitCode RunBinaryLogAnalysis(Stopwatch stopwatch, Options option
134
{
135
case ExitCode.Ok:
136
case ExitCode.Errors:
137
- allFailed &= false;
+ allFailed = false;
138
break;
139
case ExitCode.Failed:
140
@@ -209,11 +209,11 @@ static bool filter(CompilerCall compilerCall)
209
switch (exit)
210
211
212
213
logger.LogInfo($" Compilation {diagnosticName} succeeded");
214
215
216
217
logger.LogWarning($" Compilation {diagnosticName} had errors");
218
219
0 commit comments