Skip to content

Commit

Permalink
fix compilation on old compilers
Browse files Browse the repository at this point in the history
  • Loading branch information
WebFreak001 committed Oct 25, 2023
1 parent 42033dc commit 8612841
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/dscanner/analysis/run.d
Original file line number Diff line number Diff line change
Expand Up @@ -750,9 +750,9 @@ private BaseAnalyzer[] getAnalyzersForModuleAndConfig(string fileName,
moduleName = m.moduleDeclaration.moduleName.identifiers.map!(e => e.text).join(".");

BaseAnalyzerArguments args = BaseAnalyzerArguments(
fileName: fileName,
tokens: tokens,
sc: moduleScope
fileName,
tokens,
moduleScope
);

if (moduleName.shouldRun!AsmStyleCheck(analysisConfig))
Expand Down

0 comments on commit 8612841

Please sign in to comment.