webkitgtk-2.5.90/Source/JavaScriptCore/yarr/YarrPattern.cpp:300]: (style) Boolean result is used in bitwise operation. Clarify expression with parentheses. Source code is if (!m_alternative->m_terms.size() & !m_invertParentheticalAssertion) { Maybe if (!m_alternative->m_terms.size() && !m_invertParentheticalAssertion) { was intended.
The code is still in trunk, cc-ing YARR experts.
Created attachment 238708 [details] proposed patch
Comment on attachment 238708 [details] proposed patch OK to make this change, but it was OK to use & here since both values were booleans and the second expression had no side effect.
Comment on attachment 238708 [details] proposed patch Clearing flags on attachment: 238708 Committed r174012: <http://trac.webkit.org/changeset/174012>
All reviewed patches have been landed. Closing bug.