From f6dde09c57c147e9104e8a7e0ac213e9e1aaa105 Mon Sep 17 00:00:00 2001 From: Hackerpilot Date: Fri, 29 May 2015 08:43:06 -0700 Subject: [PATCH] Comment cleanup --- src/analysis/unused.d | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/analysis/unused.d b/src/analysis/unused.d index 49853b4..53a81de 100644 --- a/src/analysis/unused.d +++ b/src/analysis/unused.d @@ -1,8 +1,7 @@ -// Copyright Brian Schott (Hackerpilot) 2014. +// Copyright Brian Schott (Hackerpilot) 2014-2015. // Distributed under the Boost Software License, Version 1.0. // (See accompanying file LICENSE_1_0.txt or copy at // http://www.boost.org/LICENSE_1_0.txt) - module analysis.unused; import std.d.ast; @@ -278,7 +277,6 @@ class UnusedVariableCheck : BaseAnalyzer import std.array : array; if (parameter.name != tok!"") { -// stderr.writeln("Adding parameter ", parameter.name.text); immutable bool isRef = canFind(parameter.parameterAttributes, cast(IdType) tok!"ref") || canFind(parameter.parameterAttributes, cast(IdType) tok!"in") || canFind(parameter.parameterAttributes, cast(IdType) tok!"out"); @@ -398,4 +396,3 @@ private: Regex!char re; } -