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
Given the following code:
int cvStartLoop(int (*pt2Func)(int argc, char *argv[]), int argc, char* argv[]);
ffi-swig-generator outputs the following, invalid, ruby code:
attach_function :cvStartLoop, :cvStartLoop, [ callback([ :int, a().p.char ], :int), :int, :pointer ], :pointer
Note the a().p.char as the second argument within the callback.
a().p.char
ffi-swig-generator should output:
attach_function :cvStartLoop, :cvStartLoop, [ callback([:int, :pointer], :int), :int, :pointer ], :pointer
The text was updated successfully, but these errors were encountered:
ce2b9c5
No branches or pull requests
Given the following code:
ffi-swig-generator outputs the following, invalid, ruby code:
Note the
a().p.char
as the second argument within the callback.ffi-swig-generator should output:
The text was updated successfully, but these errors were encountered: