Lowered maxInteger and minInteger to avoid weird overflows

master
Dany Thach 2025-02-15 23:59:12 +01:00
parent a22d229c01
commit 278e5092e6
1 changed files with 2 additions and 2 deletions

View File

@ -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;
}