From 23533060bb581a168daca43c7ba015bb3323a7b4 Mon Sep 17 00:00:00 2001 From: Viktor Date: Tue, 10 Jul 2018 00:20:28 +0300 Subject: [PATCH] fix #570 --- 3rdparty/dimage/stream.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/3rdparty/dimage/stream.d b/3rdparty/dimage/stream.d index dcc383ba..aa58d2f7 100644 --- a/3rdparty/dimage/stream.d +++ b/3rdparty/dimage/stream.d @@ -223,7 +223,7 @@ class ArrayStream : InputStream { } override size_t readBytes(void* buffer, size_t count) { - import std.c.string; + import core.stdc.string; count = min(count, size_ - pos);