From 8d34ba71448cc657661db8a2f4da2508102a20fb Mon Sep 17 00:00:00 2001 From: Hackerpilot Date: Tue, 27 May 2014 04:56:40 +0000 Subject: [PATCH] Fix incorrect unused parameter warnings in function types --- analysis/unused.d | 2 ++ 1 file changed, 2 insertions(+) diff --git a/analysis/unused.d b/analysis/unused.d index 73224c9..928fda0 100644 --- a/analysis/unused.d +++ b/analysis/unused.d @@ -53,6 +53,8 @@ class UnusedVariableCheck : BaseAnalyzer popScope(); } + override void visit(const Type type) {} + mixin template PartsUseVariables(NodeType) { override void visit(const NodeType node)