On 4/12/13, Steven Schveighoffer <[email protected]> wrote: > pragma(msg, module.stringof ~ " is experimental, subject to API changes");
I like this better:
version(UseExperimentalProcess) { }
else pragma(msg, module.stringof ~ " is experimental, subject to API changes");
That way I can turn off the warning by passing
-version=UseExperimentalProcess on the command-line. That of course
means I take full responsibility for using experimental code.
