We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
There are many -Wincompatible-pointer-types errors when building with C23, which is the default in GCC 15. https://gcc.gnu.org/gcc-15/porting_to.html#c23-fn-decls-without-parameters
-Wincompatible-pointer-types
build.log
newwin.c:241:36: error: passing argument 2 of 'W_SetWindowKeyDownHandler' from incompatible pointer type [-Wincompatible-pointer-types] 241 | W_SetWindowKeyDownHandler(warnw, handleMessageWindowKeyDown); | ^~~~~~~~~~~~~~~~~~~~~~~~~~ | | | void (*)(W_Event *) {aka void (*)(struct event *)}
The text was updated successfully, but these errors were encountered:
games-action/netrek-cow: don't build with C23
ea8374a
Incompatible function declarations under C23. quozl/netrek-client-cow#10 Closes: https://bugs.gentoo.org/945213 Signed-off-by: Takuya Wakazono <[email protected]>
Thanks! Looks like some rework is needed.
Sorry, something went wrong.
No branches or pull requests
There are many
-Wincompatible-pointer-types
errors when building with C23, which is the default in GCC 15.https://gcc.gnu.org/gcc-15/porting_to.html#c23-fn-decls-without-parameters
build.log
The text was updated successfully, but these errors were encountered: