Use strict typing
This commit is contained in:
@@ -243,7 +243,7 @@ public:
|
|||||||
protected:
|
protected:
|
||||||
virtual uint32 ComputeHashValue() const
|
virtual uint32 ComputeHashValue() const
|
||||||
{
|
{
|
||||||
uint32 hash = *(uint32*)(&fInfo);
|
uint32 hash = reinterpret_cast<addr_t>(fInfo);
|
||||||
hash = hash * 19 + StringUtils::HashValue(fInfo->Expression());
|
hash = hash * 19 + StringUtils::HashValue(fInfo->Expression());
|
||||||
|
|
||||||
return hash;
|
return hash;
|
||||||
|
|||||||
Reference in New Issue
Block a user