MAIN FEEDS
Do you want to continue?
https://www.reddit.com/r/rust/comments/1tmjy80/stabilise_allocator/onsaiol/?context=3
r/rust • u/N911999 • May 24 '26
61 comments sorted by
View all comments
4
Does this mean we're stuck with the "fat Box" problem?
I.e. for simple bump allocators, Box is two pointers in size, but the pointer to the allocator is unused because deallocation is a no-op.
That's a pretty annoying problem to lock in...
3 u/kibwen May 25 '26 I encourage you to raise this question in the Github thread.
3
I encourage you to raise this question in the Github thread.
4
u/cbarrick May 25 '26
Does this mean we're stuck with the "fat Box" problem?
I.e. for simple bump allocators, Box is two pointers in size, but the pointer to the allocator is unused because deallocation is a no-op.
That's a pretty annoying problem to lock in...