Details
Details
- Reviewers
mclow.lists EricWF
Diff Detail
Diff Detail
Event Timeline
Comment Actions
LGTM other than inline nits.
include/bit | ||
---|---|---|
92 | This check seems redundant since _LIBCPP_HAS_BITSCAN is defined by those very same conditions. |
include/bit | ||
---|---|---|
150 | We like our own defines in our files; we try to avoid using things like _M_IX86 (what does that even mean?) If we need a new macro that says "We are a 32 bit windows environment", then we should define one. |
Comment Actions
This is all pretty much a lost cause on Windows anyway, since none of the compiler intrinsics are constexpr, and with the (upcoming) adoption of P0553 and P0556 these routines will have to be constexpr.
This check seems redundant since _LIBCPP_HAS_BITSCAN is defined by those very same conditions.