diff options
| author | Mike Wey | 2011-10-02 19:56:18 +0200 |
|---|---|---|
| committer | Mike Wey | 2011-10-02 19:56:18 +0200 |
| commit | 08886e28931be6244de210a809e1d73d4d0ab6bf (patch) | |
| tree | 9103b4ecfceb6157783ca7399e29101b896682e4 /dmagick/ImageView.d | |
| parent | 75405b7ef6494565d56f0c9c996ca55817ad7554 (diff) | |
ssize_t isn't defined on windows.
Diffstat (limited to 'dmagick/ImageView.d')
| -rw-r--r-- | dmagick/ImageView.d | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/dmagick/ImageView.d b/dmagick/ImageView.d index 567e0de..4e967be 100644 --- a/dmagick/ImageView.d +++ b/dmagick/ImageView.d @@ -11,7 +11,6 @@ import std.parallelism; import std.range; import std.string; import core.atomic; -import core.sys.posix.sys.types; import dmagick.Color; import dmagick.Exception; @@ -26,6 +25,8 @@ import dmagick.c.magickType; import dmagick.c.memory; import dmagick.c.pixel; +alias ptrdiff_t ssize_t; + /** * The ImageView allows changing induvidual pixels with the slicing and * indexing operators. |
