Merge pull request #571 from dayllenger/master

fix #570 (DMD 2.081)
This commit is contained in:
Vadim Lopatin 2018-08-08 12:03:34 +03:00 committed by GitHub
commit 18286dc659
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);