DIP76: Autodecode Should Not Throw

Kagamin via Digitalmars-d digitalmars-d at puremagic.com
Tue Apr 7 01:04:13 PDT 2015


On Tuesday, 7 April 2015 at 03:17:26 UTC, Walter Bright wrote:
> http://wiki.dlang.org/DIP76

Deprecation can be reported by checking version:

version(EnableNothrowAutodecoding)
   alias autodecode=autodecodeImpl;
else
   @deprecated("compile with -version=EnableNothrowAutodecoding")
   alias autodecode=autodecodeImpl;


More information about the Digitalmars-d mailing list