[gen.c:1165]: (style) Boolean result is used in bitwise operation. Clarify expression with parentheses.
if (!noneHaveContext & !allHaveContext) {
Maybe
if (!noneHaveContext && !allHaveContext) {
was intended.
Log in to post a comment.