Merge pull request #630 from BBasile/upd-deps

update dependencies, fix some possible crash during linting
merged-on-behalf-of: BBasile <BBasile@users.noreply.github.com>
This commit is contained in:
The Dlang Bot 2018-05-14 22:30:58 +02:00 committed by GitHub
commit 8af3702a78
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 7 additions and 7 deletions

@ -1 +1 @@
Subproject commit d0458897a60137a84f88eefcdd5a0b12ac07cbe7 Subproject commit c261fa119072ce788ef81b8d8fee9a2adddca5d1

@ -1 +1 @@
Subproject commit 52625b8612e503f8ae1d481a1cd3d52982e73fb9 Subproject commit e018446b028b92c34398032e698c05c0919630ee

View File

@ -12,10 +12,10 @@
"StdLoggerDisableWarning" "StdLoggerDisableWarning"
], ],
"dependencies" : { "dependencies" : {
"libdparse" : "~>0.8.1", "libdparse" : "~>0.8.5",
"dsymbol" : "~>0.3.5", "dsymbol" : "~>0.3.7",
"inifiled" : "~>1.3.1", "inifiled" : "~>1.3.1",
"emsi_containers" : "~>0.8.0-alpha.6", "emsi_containers" : "~>0.8.0-alpha.7",
"libddoc" : "~>0.3.0-beta.1", "libddoc" : "~>0.3.0-beta.1",
"stdx-allocator" : "~>2.77.0" "stdx-allocator" : "~>2.77.0"
}, },

@ -1 +1 @@
Subproject commit 00e0c70c0f74c98a26d629f86618376fc4849c47 Subproject commit 157d572401d92bc0639c53e700c58018b6b29f06

View File

@ -311,7 +311,7 @@ final class UnusedVariableCheck : BaseAnalyzer
interestDepth++; interestDepth++;
withStatetement.expression.accept(this); withStatetement.expression.accept(this);
interestDepth--; interestDepth--;
withStatetement.statementNoCaseNoDefault.accept(this); withStatetement.declarationOrStatement.accept(this);
} }
override void visit(const Parameter parameter) override void visit(const Parameter parameter)