Skip to content

Commit

Permalink
Merge pull request #2 from redstar/dmd2066
Browse files Browse the repository at this point in the history
Make vibe-dav compilable with DMD 2.066.1.
  • Loading branch information
gedaiu committed Aug 21, 2015
2 parents 9721cd5 + dadef01 commit 9ca25f1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
1 change: 1 addition & 0 deletions source/vibedav/base.d
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ import std.file;
import std.path;
import std.digest.md;
import std.datetime;
import std.array;
import std.string;
import std.stdio;
import std.typecons;
Expand Down
5 changes: 4 additions & 1 deletion source/vibedav/filedav.d
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,10 @@ import std.stdio;
import std.typecons;
import std.uri;
import std.uuid;
import std.algorithm.comparison : max;
static if (__traits(compiles, { import std.algorithm.comparison : max; }))
import std.algorithm.comparison : max;
else
import std.algorithm;

import tested: testName = name;

Expand Down

0 comments on commit 9ca25f1

Please sign in to comment.