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
Pointer typedefs are not being generated correctly. Given the following c typedef:
typedef int * pInt
This is the ruby code that is generated:
typedef :int, :pInt
This is what should be generated:
typedef :pointer, :pInt
The text was updated successfully, but these errors were encountered:
Fixed issue #20; pointer typedefs
c9322cc
No branches or pull requests
Pointer typedefs are not being generated correctly. Given the following c typedef:
This is the ruby code that is generated:
This is what should be generated:
The text was updated successfully, but these errors were encountered: