Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Fix boolean operation in WTF/BitMap test.
https://bugs.webkit.org/show_bug.cgi?id=240668 Reviewed by Adrian Perez de Castro. Clang 14 starts complaining about using logical operators to boolean: ``` webkit/Tools/TestWebKitAPI/Tests/WTF/Bitmap.cpp:1172:32: warning: use of bitwise '|' with boolean operands [-Wbitwise-instead-of-logical] EXPECT_EQ(temp.get(i), bitmap1.get(i) | bitmap2.get(i)); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ || ``` Canonical link: https://commits.webkit.org/250773@main git-svn-id: https://svn.webkit.org/repository/webkit/trunk@294517 268f45cc-cd09-0410-ab3c-d52691b4dbfc
- Loading branch information