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
There is need to import bitwise flag definitions: https://github.com/bitcoin-core/secp256k1/blob/01b819a8c7d485fdd3f024d77273f5769d75b2d3/include/secp256k1.h#L191-L214
Currently, any expressions are ignored:
crystal_lib/src/crystal_lib/prefix_importer.cr
Line 21 in c3012aa
The text was updated successfully, but these errors were encountered:
The naive solution I found is to add Crystal::Expressions to the allowed types:
Crystal::Expressions
return unless value.is_a?(Crystal::NumberLiteral | Crystal::Expressions)
Sorry, something went wrong.
No branches or pull requests
There is need to import bitwise flag definitions: https://github.com/bitcoin-core/secp256k1/blob/01b819a8c7d485fdd3f024d77273f5769d75b2d3/include/secp256k1.h#L191-L214
Currently, any expressions are ignored:
crystal_lib/src/crystal_lib/prefix_importer.cr
Line 21 in c3012aa
The text was updated successfully, but these errors were encountered: