View | Details | Raw Unified | Return to bug 205788
Collapse All | Expand All

(-)/usr/src/lib/libc++/../../contrib/libc++/include/bitset (-1 / +1 lines)
Lines 252-258 __bitset<_N_words, _Size>::__bitset(unsi Link Here
252
#if __SIZEOF_SIZE_T__ == 8
252
#if __SIZEOF_SIZE_T__ == 8
253
    : __first_{__v}
253
    : __first_{__v}
254
#elif __SIZEOF_SIZE_T__ == 4
254
#elif __SIZEOF_SIZE_T__ == 4
255
    : __first_{__v, __v >> __bits_per_word}
255
    : __first_{static_cast<unsigned int>(__v),static_cast<unsigned int>(__v >> __bits_per_word)}
256
#else
256
#else
257
#error This constructor has not been ported to this platform
257
#error This constructor has not been ported to this platform
258
#endif
258
#endif

Return to bug 205788