Thread overview
stderr.printf() deprecated - what should I use now?
Oct 26, 2005
Piotr Fusik
Oct 26, 2005
Jikuh
Oct 26, 2005
Piotr Fusik
October 26, 2005
I haven't used D for some time. Now when I compile my old program I see that stderr.printf() statements are deprecated. What should I use instead?


October 26, 2005
You can use

dout.writef(...)

in std.cstream package.

In article <djndn9$nhd$1@digitaldaemon.com>, Piotr Fusik says...
>
>I haven't used D for some time. Now when I compile my old program I see that stderr.printf() statements are deprecated. What should I use instead?
>
>



October 26, 2005
derr.writef(...) I guess?
Thanks.

In article <djnn2f$1q8g$1@digitaldaemon.com>, Jikuh says...
>
>You can use
>
>dout.writef(...)
>
>in std.cstream package.
>
>In article <djndn9$nhd$1@digitaldaemon.com>, Piotr Fusik says...
>>
>>I haven't used D for some time. Now when I compile my old program I see that stderr.printf() statements are deprecated. What should I use instead?