We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8193e0d commit 9313647Copy full SHA for 9313647
1 file changed
engine/source/dmdscript/irstate.d
@@ -62,7 +62,7 @@ struct IRstate
62
{
63
assert(codebuf.offset <= codebuf.data.length);
64
if(codebuf.data.length > codebuf.data.capacity)
65
- printf("ptr %p, length %d, capacity %d\n", codebuf.data.ptr, codebuf.data.length, core.memory.GC.sizeOf(codebuf.data.ptr));
+ printf("ptr %p, length %d, capacity %d\n", codebuf.data.ptr, cast(uint)codebuf.data.length, cast(uint)core.memory.GC.sizeOf(codebuf.data.ptr));
66
assert(codebuf.data.length <= codebuf.data.capacity);
67
for(uint u = 0; u < codebuf.offset; )
68
0 commit comments