From 308bdfd1c18c435c94b712f3c941d787884ef1f3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Per=20Nordl=C3=B6w?= Date: Thu, 26 Aug 2021 21:20:53 +0200 Subject: [PATCH] Replace `std.typecons.scoped` with `scope` --- dsymbol | 2 +- src/dscanner/analysis/run.d | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/dsymbol b/dsymbol index 049bec1..666aed3 160000 --- a/dsymbol +++ b/dsymbol @@ -1 +1 @@ -Subproject commit 049bec15b153bd1bc7ca78af862cfd41ae8c2d9f +Subproject commit 666aed31f6224af737199374cbe7c8c9416c6d80 diff --git a/src/dscanner/analysis/run.d b/src/dscanner/analysis/run.d index 83cd7ba..a16147c 100644 --- a/src/dscanner/analysis/run.d +++ b/src/dscanner/analysis/run.d @@ -379,7 +379,7 @@ MessageSet analyze(string fileName, const Module m, const StaticAnalysisConfig a m.moduleDeclaration.moduleName.identifiers !is null) moduleName = m.moduleDeclaration.moduleName.identifiers.map!(e => e.text).join("."); - auto first = scoped!FirstPass(m, internString(fileName), symbolAllocator, + scope first = new FirstPass(m, internString(fileName), symbolAllocator, symbolAllocator, true, &moduleCache, null); first.run(); @@ -605,4 +605,3 @@ MessageSet analyze(string fileName, const Module m, const StaticAnalysisConfig a return set; } -