The "no gc" crowd

Benjamin Thaut code at benjamin-thaut.de
Wed Oct 9 12:46:12 PDT 2013


Am 09.10.2013 17:40, schrieb Johannes Pfau:
>
> But if someone really wants to strip the GC _completely_ there's a huge
> issue with memory management of Exceptions.
>

I don't agree there. Basically all my catch blocks look like this:

catch(Exception ex)
{
   //do something with ex
   Delete(ex);
}

I never had problems with this, or memory leaks.


More information about the Digitalmars-d mailing list