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
void flux_stat_watcher_get_rstat (flux_watcher_t *w, struct stat *stat, struct stat *prev)
Produces:
function flux_stat_watcher_get_rstat(w, stat, prev) ccall((:flux_stat_watcher_get_rstat, libflux_core), Cvoid, (Ptr{flux_watcher_t}, Ptr{stat}, Ptr{stat}), w, stat, prev) end
Which fails with, because the type name stat is shadowed by the local variable name stat
stat
x-ref: flux-framework/FluxRM.jl#6
The text was updated successfully, but these errors were encountered:
Thanks for reporting this! I'm currently reworking the whole generator in #278 and do need test cases like this one.
Sorry, something went wrong.
Add more codegen passes and fix #279
0a18fbf
Successfully merging a pull request may close this issue.
Produces:
Which fails with, because the type name
stat
is shadowed by the local variable namestat
x-ref: flux-framework/FluxRM.jl#6
The text was updated successfully, but these errors were encountered: