diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/sqliteInt.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h index 85d4158a4..4ebc210ff 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -2338,7 +2338,11 @@ struct IdList { ** tables in a join to 32 instead of 64. But it also reduces the size ** of the library by 738 bytes on ix86. */ -typedef u64 Bitmask; +#ifdef SQLITE_BITMASK_TYPE + typedef SQLITE_BITMASK_TYPE Bitmask; +#else + typedef u64 Bitmask; +#endif /* ** The number of bits in a Bitmask. "BMS" means "BitMask Size". |