1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-08 11:38:21 +02:00

Fixed warning

This commit is contained in:
Brian Fiete 2020-08-29 14:49:12 -07:00
parent deccc7dfc6
commit c105819b4c

View file

@ -587,11 +587,11 @@ static
void* data;
if (size <= 128)
{
data = scope:mixin uint8[size]* { ? };
data = scope:mixin uint8[size]* ( ? );
}
else
{
data = new uint8[size]* { ? };
data = new uint8[size]* ( ? );
defer:mixin delete data;
}
data