1
0
Fork 0
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:
Piotr Myśliński 2020-05-27 20:15:28 +02:00
parent 76e29d385b
commit f5bbc4b6c6
No known key found for this signature in database
GPG key ID: 1E8505076BB60E01

View file

@ -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)
{