You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
An old trope of the general form return (x == y)? 1 : 0;. Can be replaced with return x == y; but callers should be inspected in case they refer to 0 or '0' as the false value (it's possible, however unlikely).
Find them with: ack '\?\s+((1\s*:\s*0)|(0\s*:\s*1))' cgi lib bin
The text was updated successfully, but these errors were encountered:
An old trope of the general form
return (x == y)? 1 : 0;
. Can be replaced withreturn x == y;
but callers should be inspected in case they refer to0
or'0'
as the false value (it's possible, however unlikely).Find them with:
ack '\?\s+((1\s*:\s*0)|(0\s*:\s*1))' cgi lib bin
The text was updated successfully, but these errors were encountered: