Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix '-Wbitwise-instead-of-logical' in fbpcs/emp_games/lift/pcf2_calcu…
…lator/input_processing/CompactionBasedInputProcessor_impl.h Summary: LLVM-15 requires that we differentiate between `&&` and `&` as well as `||` and `|`. Logical operations are done with `&&` and `||` and bitwise operations are done with `&` and `|`. Confusing the two makes code harder to read and may lead to subtle bugs. - If you approve of this diff, please use the "Accept & Ship" button :-) Reviewed By: dmm-fb Differential Revision: D42374520 fbshipit-source-id: 1b1427ebfe1ec2645ba06aec8fc955f46e13dfbc
- Loading branch information