fix, array length has to be of type size_t

...otherwise build fails on a 32 bit OS
This commit is contained in:
Basile Burg 2015-01-13 14:03:05 +01:00
parent 9c8abe55fa
commit 65415a15d5
1 changed files with 1 additions and 1 deletions

View File

@ -53,7 +53,7 @@ int main(string[] args)
else
{
File f = File(args[1]);
buffer = new ubyte[](f.size);
buffer = new ubyte[](cast(size_t)f.size);
f.rawRead(buffer);
}
LexerConfig config;