http://d.puremagic.com/issues/show_bug.cgi?id=3020
Walter Bright <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[email protected] --- Comment #5 from Walter Bright <[email protected]> 2010-10-29 03:21:11 PDT --- Out of memory errors should be allowed inside nothrow. Also, I suspect it would be good to disallow: try { ... } catch (Exception e) { /* nothing here */ } where all exceptions are swallowed and ignored. This kind of thing happens in Java to work around exception specifications, but I don't see a need for it here. Of course, there would still be ways to swallow & ignore (just put in a call to a do-nothing function), but such shouldn't be easy. What do you think? -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: -------
