http://d.puremagic.com/issues/show_bug.cgi?id=6829
--- Comment #5 from [email protected] 2013-07-10 02:11:50 PDT --- I think this should be a recognizable rotate left function: private static uint rol(in uint x, in uint y) pure nothrow { return (x << y) | (x >> (32 - y)); } -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: -------
