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
Fixed -Wunreachable-code-return warning that indicated bigger problem
clang warned that a trailing else was impossible; it was right because
a preceding 'if' was of the form:
if (a == b || c)
instead of:
if (a == b || a == c)
since 'c' is a non-zero constant, the 'if' was always true, making
the next 'else' impossible.