Fix missing cast in do_cc
Apparently not needed on Mac (clang?), but breaking the win and linux boxes.
This commit is contained in:
parent
8c02adc630
commit
5e3d0e304f
@ -417,7 +417,7 @@ sweep(rust_task *task, const std::set<void *> &marked) {
|
||||
|
||||
void
|
||||
do_cc(rust_task *task) {
|
||||
DPRINT("cc; n allocs = %lu\n", task->local_allocs.size());
|
||||
DPRINT("cc; n allocs = %lu\n", (long unsigned int)task->local_allocs.size());
|
||||
|
||||
irc_map ircs;
|
||||
irc::compute_ircs(task, ircs);
|
||||
|
Loading…
x
Reference in New Issue
Block a user