Merge remote-tracking branch 'origin' into 0.3.0-dev

This commit is contained in:
Hackerpilot 2015-05-28 11:16:36 -07:00
commit 6b345f5c01
1 changed files with 0 additions and 5 deletions

View File

@ -21,9 +21,6 @@ class RedundantParenCheck : BaseAnalyzer
override void visit(const IfStatement statement)
{
import std.stdio : stderr;
stderr.writeln(__PRETTY_FUNCTION__);
UnaryExpression unary;
if (statement.expression is null || statement.expression.items.length != 1)
goto end;
@ -42,8 +39,6 @@ class RedundantParenCheck : BaseAnalyzer
override void visit(const PrimaryExpression primaryExpression)
{
import std.stdio : stderr;
UnaryExpression unary;
if (primaryExpression.expression is null)
goto end;