Replace `std.typecons.scoped` with `scope`

This commit is contained in:
Per Nordlöw 2021-08-26 21:20:53 +02:00 committed by Mathias LANG
parent 41d9682a5f
commit 308bdfd1c1
2 changed files with 2 additions and 3 deletions

@ -1 +1 @@
Subproject commit 049bec15b153bd1bc7ca78af862cfd41ae8c2d9f
Subproject commit 666aed31f6224af737199374cbe7c8c9416c6d80

View File

@ -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;
}