mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-10 20:42:21 +02:00
Correct int64.MinValue
This commit is contained in:
parent
76e29d385b
commit
f5bbc4b6c6
1 changed files with 1 additions and 2 deletions
|
@ -12,8 +12,7 @@ namespace System
|
|||
}
|
||||
|
||||
public const int64 MaxValue = 0x7FFFFFFFFFFFFFFFL;
|
||||
//public const long MinValue = -0x8000000000000000L;
|
||||
public const int64 MinValue = -0x7FFFFFFFFFFFFFFFL; //TODO: Should be one lower!
|
||||
public const int64 MinValue = -0x8000000000000000L;
|
||||
|
||||
public static int operator<=>(Int64 a, Int64 b)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue