The "no gc" crowd

deadalnix deadalnix at gmail.com
Wed Oct 9 12:40:38 PDT 2013


On Wednesday, 9 October 2013 at 16:51:11 UTC, Manu wrote:
> Exceptions have a pretty well defined lifetime... can't they be 
> manually
> cleaned up by the exception handler after the catching scope 
> exits?

static Exception askingForTrouble;
try { ... } catch(Exception e) {
     askingForTrouble = e;
}


More information about the Digitalmars-d mailing list