rdar://129177831 gcc doesn’t like && on constant operands: /var/home/phil/WebKit/Source/WTF/wtf/DataLog.cpp:48:19: warning: use of logical '&&' with constant operand [-Wconstant-logical-operand] 48 | static_assert(!(0 && 0), "Set at most one data-log file target"); | ^ ~ /var/home/phil/WebKit/Source/WTF/wtf/DataLog.cpp:48:19: note: use '&' for a bitwise operation 48 | static_assert(!(0 && 0), "Set at most one data-log file target"); | ^~ | & /var/home/phil/WebKit/Source/WTF/wtf/DataLog.cpp:48:19: note: remove constant to silence this warning 48 | static_assert(!(0 && 0), "Set at most one data-log file target"); | ^~~~ 1 warning generated. This causes some minor log spam and so should be fixed.
Pull request: https://github.com/WebKit/WebKit/pull/29469
Committed 279679@main (00896ef855fa): <https://commits.webkit.org/279679@main> Reviewed commits have been landed. Closing PR #29469 and removing active labels.