fix compilation on old compilers
This commit is contained in:
parent
42033dcc55
commit
8612841365
|
@ -750,9 +750,9 @@ private BaseAnalyzer[] getAnalyzersForModuleAndConfig(string fileName,
|
||||||
moduleName = m.moduleDeclaration.moduleName.identifiers.map!(e => e.text).join(".");
|
moduleName = m.moduleDeclaration.moduleName.identifiers.map!(e => e.text).join(".");
|
||||||
|
|
||||||
BaseAnalyzerArguments args = BaseAnalyzerArguments(
|
BaseAnalyzerArguments args = BaseAnalyzerArguments(
|
||||||
fileName: fileName,
|
fileName,
|
||||||
tokens: tokens,
|
tokens,
|
||||||
sc: moduleScope
|
moduleScope
|
||||||
);
|
);
|
||||||
|
|
||||||
if (moduleName.shouldRun!AsmStyleCheck(analysisConfig))
|
if (moduleName.shouldRun!AsmStyleCheck(analysisConfig))
|
||||||
|
|
Loading…
Reference in New Issue