Deprecating a module

Andrej Mitrovic via Digitalmars-d digitalmars-d at puremagic.com
Thu Apr 24 03:09:07 PDT 2014


On 4/24/14, Jon Giddy via Digitalmars-d <digitalmars-d at puremagic.com> wrote:
> Is there a good way to deprecate a module?

It's a filed enhancement:
https://issues.dlang.org/show_bug.cgi?id=12567

As a current workaround you can use a deprecated block:

-----
module bar;

deprecated:

void test() { }
void test2() { }
-----


More information about the Digitalmars-d mailing list