On Tuesday, 19 December 2017 at 13:14:50 UTC, Mark wrote:
"In well-written modern C++, memory management errors are a solved problem. You can just write code, and know that the compiler and library will take care of cleaning up for you, just like with a GC-based system, but with the added benefit that it’s deterministic, and can handle non-memory resources such as file handles and sockets too."
They compare it to malloc+free MM.