Is synchronized(...){...} doomed to never be nothrow/@nogc?
Walter Bright via Digitalmars-d
digitalmars-d at puremagic.com
Tue May 10 18:08:36 PDT 2016
Why does vibe.d throw?
Also, any throwing code can be converted to nothrow with:
try
{
...throwing code...
}
catch (Exception e)
{
...
}
More information about the Digitalmars-d
mailing list