Defensive commit before experimenting with code::blocks

This commit is contained in:
Simon Brooke 2025-03-13 12:47:54 +00:00
parent c2ad3eda0d
commit ce1c72973d
3 changed files with 23 additions and 9 deletions

View file

@ -14,6 +14,10 @@
/**
* The maximum value we will allow in an integer cell.
*
* NOTE: 20250312 this is 2^60. WHY? Given that we're using the sign bit
* inside the int64 record, we only have 63 value bits; but why did I decide
* not to use all 63?
*/
#define MAX_INTEGER ((__int128_t)0x0fffffffffffffffL)