June 26, 2006
http://d.puremagic.com/issues/show_bug.cgi?id=225

           Summary: object.d uses uint instead of hash_t
           Product: D
           Version: 0.161
          Platform: All
        OS/Version: All
            Status: NEW
          Keywords: patch
          Severity: normal
          Priority: P2
         Component: DMD
        AssignedTo: bugzilla@digitalmars.com
        ReportedBy: jpelcis@gmail.com


In internals\object.d, there is

class Object
{
    ...
    hash_t toHash()
    ...
}

In object.d, it is

class Object
{
    ...
    uint toHash();
    ...
}

While there's no difference on a 32-bit system, this could wreak havoc on 64-bit.  Changing the one in object.d should fix the problem.


-- 

July 01, 2006
http://d.puremagic.com/issues/show_bug.cgi?id=225


bugzilla@digitalmars.com changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|                            |FIXED




------- Comment #1 from bugzilla@digitalmars.com  2006-06-30 20:32 -------
Fixed DMD 0.162


--