http://d.puremagic.com/issues/show_bug.cgi?id=10680
Summary: BigInt uses deprecated std.traits.unsigned Product: D Version: D2 Platform: All OS/Version: All Status: NEW Severity: minor Priority: P2 Component: Phobos AssignedTo: nob...@puremagic.com ReportedBy: bearophile_h...@eml.cc --- Comment #0 from bearophile_h...@eml.cc 2013-07-20 07:58:34 PDT --- I think unsigned() is a trait, so it should be in std.traits. But in the meantime there is this small problem: import std.bigint: BigInt; void main() { BigInt(1); } DMD 2.064alpha gives: ...\dmd2\src\phobos\std\bigint.d(534): Deprecation: alias std.traits.unsigned is deprecated - unsigned has been moved to std.conv. Please adjust your imports accordingly. -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: -------