(no title)
danuker | 1 year ago
What projects need manual memory management? Those where the hardware costs are comparable to development/maintenance costs. That is much rarer than people think.
RAM is cheap, and few applications really need bespoke allocation. And it's not just a question of skill; even the most disciplined make mistakes. It's one of how much brainpower you want to allocate to... memory allocation.
Xeamek|1 year ago
Games.
Big/specialiased games to be precise, as for smaller projects managed language offer good enough performance.
p_l|1 year ago
High end games programming sometimes knocks the love of malloc()/free() (and naive RAII) out of them.