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 dabe63c commit 1d56a8aCopy full SHA for 1d56a8a
csharp/extractor/Semmle.Extraction.CSharp/Entities/Compilations/Compilation.cs
@@ -53,8 +53,7 @@ public override void Populate(TextWriter trapFile)
53
var rspArgs = CommandLineParser.SplitCommandLineIntoArguments(rspFileContent, removeHashComments: true);
54
foreach (var rspArg in rspArgs)
55
{
56
- trapFile.compilation_expanded_args(this, expandedIndex, rspArg);
57
- expandedIndex++;
+ trapFile.compilation_expanded_args(this, expandedIndex++, rspArg);
58
}
59
60
catch (Exception exc)
@@ -64,8 +63,7 @@ public override void Populate(TextWriter trapFile)
64
63
65
else
66
67
- trapFile.compilation_expanded_args(this, expandedIndex, arg);
68
+ trapFile.compilation_expanded_args(this, expandedIndex++, arg);
69
70
71
0 commit comments