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

Make fallthroughs explicit in stb_image.h #1615

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

r-barnes
Copy link

@r-barnes r-barnes commented Feb 20, 2024

The -Wimplicit-fallthrough flag can be used to check for implicit fallthroughs, which are a common source of errors.

I've added and used STBI_FALLTHROUGH which maps to __attribute__((fallthrough)), which the compiler uses to determine whether a fallthrough is explicit or not.

The `-Wimplicit-fallthrough` flag can be used to check for implicit fallthroughs, which are a common source of errors.

I've added and used `STBI_FALLTHROUGH` which maps to `__attribute__((fallthrough))`, which the compiler uses to determine whether a fallthrough is explicit or not.
@nothings
Copy link
Owner

nothings commented Feb 20, 2024

This needs to work on all compilers, so the define needs to be an ifdef which tests for suitable compilers, with an else that defines it to nothing.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants