edponce opened a new pull request #12052:
URL: https://github.com/apache/arrow/pull/12052


   Reduces the number of bitwise classes/structs used in 
util/bit_block_counter.h by removing the bool specialization because C++ 
guarantees `(bool)(a & b) == (a && b)` for bool types. A bool specialization is 
added for bitwise negation because `~(bool)(a)` will always return true, so 
need to explicitly use `!a`.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


Reply via email to