mirror of
https://gitlab.com/freepascal.org/fpc/pas2js.git
synced 2025-04-06 11:47:47 +02:00
rtl: less hints
This commit is contained in:
parent
2cb685643b
commit
a8430a243b
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user