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
In an attempt to create generated functions with void* parameters, I tried using native/type type to define a void* type in the model.cx file.
void*
native/type
native/type NativeVoidType: "void*" class TypeConvert:/ int16 Cast( string src, NativeVoidType dest, type t)
Generates: _type.h
/* Native types */ #ifndef APOLLO_H typedef void* void; #endif
Error
warn src/install.c:162 (bake_uninstall) missing uninstaller for project 'apollo' In file included from /home/hendren/.corto/include/corto/2.0/apollo/c/_api.h:12:0, from /home/hendren/.corto/include/corto/2.0/apollo/c/c.h:1, from src/_api.c:7: /home/hendren/.corto/include/corto/2.0/apollo/_type.h:32:15: error: expected identifier or ‘(’ before ‘void’ typedef void* void; ^~~~
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In an attempt to create generated functions with
void*
parameters, I tried usingnative/type
type to define avoid*
type in the model.cx file.Generates: _type.h
Error
The text was updated successfully, but these errors were encountered: