fix(runtime/cpp): typo

This commit is contained in:
Leonardo de Moura 2015-09-16 07:34:08 -07:00
parent 00a59a50b6
commit 46f7123cc8

View file

@ -36,7 +36,7 @@ public:
m_free_list[n] = *(reinterpret_cast<void **>(r));
return r;
} else {
return malloc(sizeof(obj) + sizeof(void*)*n); // NOLINT
return malloc(sizeof(obj_cell) + sizeof(void*)*n); // NOLINT
}
}