From 8612841365ebcdd6b812efba209ae55968f83caa Mon Sep 17 00:00:00 2001
From: WebFreak001 <gh@webfreak.org>
Date: Wed, 25 Oct 2023 07:50:09 +0200
Subject: [PATCH] fix compilation on old compilers

---
 src/dscanner/analysis/run.d | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/dscanner/analysis/run.d b/src/dscanner/analysis/run.d
index a5166ea..7965135 100644
--- a/src/dscanner/analysis/run.d
+++ b/src/dscanner/analysis/run.d
@@ -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))