rtl: less hints

This commit is contained in:
mattias 2019-03-04 13:52:35 +00:00
parent 2cb685643b
commit a8430a243b

View File

@ -1819,7 +1819,7 @@ end;
Function TBucketList.BucketFor(AItem: JSValue): Integer;
begin
// JSValues on average have a granularity of 4
Result:=(PtrInt(AItem) shr 2) and FBucketMask;
Result:=(longword(AItem) shr 2) and FBucketMask;
end;
constructor TBucketList.Create(ABuckets: TBucketListSizes);