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

Removes warnings generated by GDCLASS usage #1545

Merged
merged 1 commit into from
Aug 8, 2024

Commits on Aug 8, 2024

  1. removes warnings generated by GDCLASS usage

    This change removes the warnings (unused parameters) coming from code injected by the GDCLASS macro.
    Contrary to warnings coming from the normal source code which can be suppressed with most compiles by specifying the include directories of this library as external or system,
    when the code is injected through a macro it is considered in the context of the user, which is the source code of user of the library.
    That forces the users to modify their code to hide the warnings coming from the mandatory `GDCLASS` here.
    That's why it's important to remove these warning from that specific macro and ideally any other macro that the user must use.
    Klaim committed Aug 8, 2024
    Configuration menu
    Copy the full SHA
    738859f View commit details
    Browse the repository at this point in the history