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
When compiling I get a bunch of errors like this
src/flint/types/fq_default.c:26171:21: warning: fallthrough annotation in unreachable code [-Wunreachable-code-fallthrough] CYTHON_FALLTHROUGH; ^ src/flint/types/fq_default.c:566:34: note: expanded from macro 'CYTHON_FALLTHROUGH' #define CYTHON_FALLTHROUGH __attribute__((fallthrough)) ^ src/flint/types/fq_default.c:26182:21: warning: fallthrough annotation in unreachable code [-Wunreachable-code-fallthrough] CYTHON_FALLTHROUGH; ^ src/flint/types/fq_default.c:566:34: note: expanded from macro 'CYTHON_FALLTHROUGH' #define CYTHON_FALLTHROUGH __attribute__((fallthrough)) ^ src/flint/types/fq_default.c:26387:21: warning: fallthrough annotation in unreachable code [-Wunreachable-code-fallthrough] CYTHON_FALLTHROUGH; ^ src/flint/types/fq_default.c:566:34: note: expanded from macro 'CYTHON_FALLTHROUGH' #define CYTHON_FALLTHROUGH __attribute__((fallthrough)) ^ src/flint/types/fq_default.c:26398:21: warning: fallthrough annotation in unreachable code [-Wunreachable-code-fallthrough] CYTHON_FALLTHROUGH; ^ src/flint/types/fq_default.c:566:34: note: expanded from macro 'CYTHON_FALLTHROUGH' #define CYTHON_FALLTHROUGH __attribute__((fallthrough)) ^ src/flint/types/fq_default.c:26848:13: warning: code will never be executed [-Wunreachable-code] goto bad;
is this something we can fix? I don't know if this is just on my machine or a generic issue
The text was updated successfully, but these errors were encountered:
I only see this one on Linux with gcc:
src/flint/types/fq_default.c:26848:13: warning: code will never be executed [-Wunreachable-code] goto bad;
I think it is new since a recent version of Cython.
Sorry, something went wrong.
No branches or pull requests
When compiling I get a bunch of errors like this
is this something we can fix? I don't know if this is just on my machine or a generic issue
The text was updated successfully, but these errors were encountered: