This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository libcxx.
from b87e5f52a Ensure bitset's string constructor doesn't poison the overload set. new 606235451 Bit Operations: P0556, P0553 and P1355. Reviewed as: https:// [...] new 268aced50 Update status for bit operations
The 2 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: include/bit | 272 +++++++++++++++++++-- test/std/numerics/bit/bit.pow.two/ceil2.fail.cpp | 50 ++++ test/std/numerics/bit/bit.pow.two/ceil2.pass.cpp | 148 +++++++++++ test/std/numerics/bit/bit.pow.two/floor2.pass.cpp | 164 +++++++++++++ test/std/numerics/bit/bit.pow.two/ispow2.pass.cpp | 162 ++++++++++++ test/std/numerics/bit/bit.pow.two/log2p1.pass.cpp | 177 ++++++++++++++ .../numerics/bit/bitops.count/countl_one.pass.cpp | 165 +++++++++++++ .../numerics/bit/bitops.count/countl_zero.pass.cpp | 172 +++++++++++++ .../numerics/bit/bitops.count/countr_one.pass.cpp | 170 +++++++++++++ .../numerics/bit/bitops.count/countr_zero.pass.cpp | 169 +++++++++++++ .../numerics/bit/bitops.count/popcount.pass.cpp | 167 +++++++++++++ test/std/numerics/bit/bitops.rot/rotl.pass.cpp | 167 +++++++++++++ test/std/numerics/bit/bitops.rot/rotr.pass.cpp | 181 ++++++++++++++ test/std/numerics/bit/nothing_to_do.pass.cpp | 12 + www/cxx2a_status.html | 4 +- 15 files changed, 2160 insertions(+), 20 deletions(-) create mode 100644 test/std/numerics/bit/bit.pow.two/ceil2.fail.cpp create mode 100644 test/std/numerics/bit/bit.pow.two/ceil2.pass.cpp create mode 100644 test/std/numerics/bit/bit.pow.two/floor2.pass.cpp create mode 100644 test/std/numerics/bit/bit.pow.two/ispow2.pass.cpp create mode 100644 test/std/numerics/bit/bit.pow.two/log2p1.pass.cpp create mode 100644 test/std/numerics/bit/bitops.count/countl_one.pass.cpp create mode 100644 test/std/numerics/bit/bitops.count/countl_zero.pass.cpp create mode 100644 test/std/numerics/bit/bitops.count/countr_one.pass.cpp create mode 100644 test/std/numerics/bit/bitops.count/countr_zero.pass.cpp create mode 100644 test/std/numerics/bit/bitops.count/popcount.pass.cpp create mode 100644 test/std/numerics/bit/bitops.rot/rotl.pass.cpp create mode 100644 test/std/numerics/bit/bitops.rot/rotr.pass.cpp create mode 100644 test/std/numerics/bit/nothing_to_do.pass.cpp