Lowered maxInteger and minInteger to avoid weird overflows
parent
a22d229c01
commit
278e5092e6
|
|
@ -5,7 +5,7 @@ class Numbers {
|
|||
|
||||
Numbers._();
|
||||
|
||||
static const int maxInteger = 0x7FFFFFFFFFFFFFFF;
|
||||
static const int minInteger = -0x7FFFFFFFFFFFFFFF;
|
||||
static const int maxInteger = 0x7FFFFFFF;
|
||||
static const int minInteger = -0x7FFFFFFF;
|
||||
|
||||
}
|
||||
Loading…
Reference in New Issue