Replies: 1 comment
-
Hello, |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello,
int l = (c = 255) ? 8 : (c == 254) ? 4 : 2;
to
int l = (c == 255) ? 8 : (c == 254) ? 4 : 2;
Beta Was this translation helpful? Give feedback.
All reactions