mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-08 11:38:21 +02:00
32-bit warning fix
This commit is contained in:
parent
fc9650af41
commit
4ff1107e7b
1 changed files with 1 additions and 0 deletions
|
@ -1187,6 +1187,7 @@ namespace System.Collections
|
|||
{
|
||||
if (sizeof(int) == 4)
|
||||
return (int32)hashCode;
|
||||
#unwarn
|
||||
return (int32)(hashCode ^ ((hashCode >> 31) * 1171)) & 0x7FFFFFFF;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue