upvote
Just write C++ safely! Why didn't we think of that?
reply
C++ is hard to get safe in complex systems with hard performance requirements.

If the system is simple and you don't give a shit about performance, it's very very easy to make C++ safe. Just use shared_ptr everywhere. Or, throw everything in a vector and don't destroy it until the end of the program. Whatever, who cares.

reply
Yeah he literally answered his own question and then used a random excuse for not going with the option.
reply