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
Calling a method using frankly_map has an invalid return value when the method returns a BOOL.
frankly_map
Broken by this commit 947f287
The result is that booleans are returned to ruby as integers. Unfortunately, all integers in ruby are false breaking a lot of the test code.
false
I understand that @encode(BOOL) == @encode(signed char) but I think that BOOL is much more often used as a return value than a signed char.
@encode(BOOL) == @encode(signed char)
The text was updated successfully, but these errors were encountered:
element_is_not_hidden
No branches or pull requests
Calling a method using
frankly_map
has an invalid return value when the method returns a BOOL.Broken by this commit 947f287
The result is that booleans are returned to ruby as integers. Unfortunately, all integers in ruby are
false
breaking a lot of the test code.I understand that
@encode(BOOL) == @encode(signed char)
but I think that BOOL is much more often used as a return value than a signed char.The text was updated successfully, but these errors were encountered: