Skip to content
This repository has been archived by the owner on Oct 12, 2022. It is now read-only.

Commit

Permalink
fix Issue 8366 - Overriding const member function in conjunction with…
Browse files Browse the repository at this point in the history
… mutable overload causes a strange error
  • Loading branch information
9rnsr committed Nov 20, 2012
1 parent af67d10 commit d57d808
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/object_.d
Expand Up @@ -689,7 +689,7 @@ class TypeInfo_AssociativeArray : TypeInfo
this.value == c.value;
}

override hash_t getHash(in void* p) nothrow @trusted
override hash_t getHash(in void* p) nothrow @trusted const
{
return _aaGetHash(cast(void*)p, this);
}
Expand Down

0 comments on commit d57d808

Please sign in to comment.