We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ngen/src/geopackage/geometry.cpp
Line 34 in a788ca4
Technically, this evaluates correctly, but should be a logical AND.
I probably had R in my mind when I wrote this 😅, since its vectorized logical AND is only a single ampersand.
The expression 0 < indiciator < 5 is evaluated using a bitwise AND.
0 < indiciator < 5
The expression should evaluate via a logical AND (&&).
&&
The text was updated successfully, but these errors were encountered:
fix: use logical AND instead of bitwise AND (NOAA-OWP#783)
e4a847f
fix: use logical AND instead of bitwise AND (#783)
7639cb7
Successfully merging a pull request may close this issue.
ngen/src/geopackage/geometry.cpp
Line 34 in a788ca4
Technically, this evaluates correctly, but should be a logical AND.
Current behavior
The expression
0 < indiciator < 5
is evaluated using a bitwise AND.Expected behavior
The expression should evaluate via a logical AND (
&&
).The text was updated successfully, but these errors were encountered: