My code was developed on dmd version 2.052 and now I am trying to update my code according to requirements from dmd 2.055. It generates multiple deprecation warnings, like:
Notice: As of Phobos 2.054, std.string.zfill has been scheduled for deprecation in January 2012. Please use std.string.rightJustify with a fillChar of '0' instead.
But the rightJustify is not in the http://www.digitalmars.com/d/2.0/phobos/std_string.html
I do not think documentation was changed since 2.053 (Last update Wed May 18 11:23:50 2011) - so, it is hard or impossible to follow such a Notices.
Comment #1 by issues.dlang — 2011-09-30T12:14:37Z
Arguably, that page should not even exist anymore, since that is no longe D's official site, and the main page redirects you to the official site, but it _is_ still possible to go to those pages directly. I don't know what Walter's exact intentions with that are. Certainly, those pages are obviously not being updated.
Regardless, the official site for D is now d-programming-language.org, and the updated documentation is there: http://d-programming-language.org/phobos/std_string.html#rightJustify
Comment #2 by tbolsh — 2011-10-03T08:20:26Z
Created attachment 1031
Module where 2 classes are defined, initialization of RBT is done in inner class constrcutor
Comment #3 by tbolsh — 2011-10-03T08:21:56Z
Created attachment 1032
Module where I try to use that classes and RBT
If those classes and the RBT will be used in the same module - everything is fine.