Merge pull request #235 from GeorgeSapkin/fixes

Fixed compilation with dmd 2.066
This commit is contained in:
Brian Schott 2015-03-08 16:22:22 -07:00
commit 8785c95c1e
1 changed files with 2 additions and 2 deletions

View File

@ -21,7 +21,7 @@ class IfStatementCheck : BaseAnalyzer
override void visit(const IfStatement ifStatement)
{
import std.format : format;
import std.string : format;
import std.algorithm : sort, countUntil;
import std.array : appender;
@ -72,7 +72,7 @@ private:
void redundancyCheck(const ExpressionNode expression, size_t line,
size_t column)
{
import std.format : format;
import std.string : format;
import std.array : appender;
import std.algorithm : sort;