Fixed compilation with dmd 2.066

This commit is contained in:
George Sapkin 2015-03-07 10:56:36 +01:00
parent 4849326745
commit 52155be821
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;