Skip to content
This repository has been archived by the owner on Oct 12, 2022. It is now read-only.

Commit

Permalink
Another cast hack to make the build work.
Browse files Browse the repository at this point in the history
  • Loading branch information
alexrp committed Jul 9, 2012
1 parent 56c371c commit 2e98bc4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rt/lifetime.d
Expand Up @@ -2183,7 +2183,7 @@ extern (C) void* _d_arrayliteralT(const TypeInfo ti, size_t length, ...)
va_start(q, __va_argsave);
for (size_t i = 0; i < length; i++)
{
va_arg(q, ti.next, result + i * sizeelem);
va_arg(q, cast()ti.next, result + i * sizeelem);
}
va_end(q);
}
Expand Down

0 comments on commit 2e98bc4

Please sign in to comment.