Skip to content
New issue

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

JavaCL Generator Results import the wrong pointer class and use it incorreclty #422

Closed
waynerasmuss opened this issue Jul 2, 2013 · 1 comment
Labels

Comments

@waynerasmuss
Copy link

The imported field class should be org.bridj.Pointer. Also, the constructors that use it should be like this:
public MyStructClass(Pointer<? extends StructObject> pointer) {
super(pointer);
}
instead if like this
public MyStructClass(Pointer pointer) {
super(pointer);
}

@ochafik
Copy link
Member

ochafik commented Jul 30, 2013

Fixes mentioned in #421 are deployed in the latest 1.0-SNAPSHOT.

@ochafik ochafik closed this as completed Jul 30, 2013
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants