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
Take this example from io_uring: https://unixism.net/loti/ref-liburing/sqe.html
It uses anonymous unions without a field name - so we need to generate accessors on the struct itself: https://github.com/axboe/liburing/blob/e9209a3c6053a94b34919e14553ea9a43a5a5f7c/src/include/liburing.h#L423
Additionally, the unions are not mentioned in the struct at all, which means it has the wrong size.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Take this example from io_uring: https://unixism.net/loti/ref-liburing/sqe.html
It uses anonymous unions without a field name - so we need to generate accessors on the struct itself: https://github.com/axboe/liburing/blob/e9209a3c6053a94b34919e14553ea9a43a5a5f7c/src/include/liburing.h#L423
Additionally, the unions are not mentioned in the struct at all, which means it has the wrong size.
The text was updated successfully, but these errors were encountered: