Comment cleanup

This commit is contained in:
Hackerpilot 2015-05-29 08:43:06 -07:00
parent 64cae93573
commit f6dde09c57
1 changed files with 1 additions and 4 deletions

View File

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