Lines 558-564
Link Here
|
558 |
static const bitset_t utf8_sb_map = |
558 |
static const bitset_t utf8_sb_map = |
559 |
{ |
559 |
{ |
560 |
/* Set the first 128 bits. */ |
560 |
/* Set the first 128 bits. */ |
561 |
[0 ... 0x80 / BITSET_WORD_BITS - 1] = BITSET_WORD_MAX |
561 |
// [0 ... 0x80 / BITSET_WORD_BITS - 1] = BITSET_WORD_MAX |
|
|
562 |
#if BITSET_WORD_MAX == 0xffffffffULL |
563 |
[0] = BITSET_WORD_MAX, |
564 |
[1] = BITSET_WORD_MAX, |
565 |
[2] = BITSET_WORD_MAX, |
566 |
[3] = BITSET_WORD_MAX |
567 |
#elif BITSET_WORD_MAX == 0xffffffffffffffffULL |
568 |
[0] = BITSET_WORD_MAX, |
569 |
[1] = BITSET_WORD_MAX |
570 |
#else |
571 |
# error "Unknown value for BITSET_WORD_MAX" |
572 |
#endif |
562 |
}; |
573 |
}; |
563 |
#endif |
574 |
#endif |
564 |
|
575 |
|