3 ms·
> dangling pointers to raw memory that [are not] cleaned How do you feel about building special constructs to automatically handle these ?
by d-lisp 9mo ago
> dangling pointers to raw memory that [are not] cleaned
How do you feel about building special constructs to automatically handle these ?
- reactordev 9mo agoI totally can but my gripe is about not wanting to.
- brabel 9mo agoc3 has a @pool annotation that makes a block use an arena to allocate, that should help since all memory is freed upon exiting the block.
- reactordev 9mo agoThat is dope