This commit is contained in:
Viktor 2018-07-10 00:20:28 +03:00 committed by GitHub
parent d942853bcd
commit 23533060bb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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);