Don't use std::int64_t, for the sake of older compilers

This commit is contained in:
Eric Fischer 2016-02-17 13:27:45 -08:00
parent a4498d34b7
commit a2b0bb01b9

View File

@ -77,7 +77,7 @@ enum PolyFillType { pftEvenOdd, pftNonZero, pftPositive, pftNegative };
static cInt const loRange = 0x7FFF;
static cInt const hiRange = 0x7FFF;
#else
typedef std::int64_t cInt;
typedef signed long long cInt;
static cInt const loRange = 0x3FFFFFFF;
static cInt const hiRange = 0x3FFFFFFFFFFFFFFFLL;
typedef signed long long long64; //used by Int128 class