Derive-C
Loading...
Searching...
No Matches
def.h
Go to the documentation of this file.
1
2#if INDICES_CAPACITY <= 256
3 #define INDEX_BITS 8
4#elif INDICES_CAPACITY <= 65536
5 #define INDEX_BITS 16
6#elif INDICES_CAPACITY <= 4294967296
7 #define INDEX_BITS 32
8#elif INDICES_CAPACITY <= 18446744073709551616
9 #define INDEX_BITS 64
10#else
11 #error "INDICES_CAPACITY required"
12#endif