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
This line of code in the deflate.h s->sym_buf[s->sym_next++] = dist; \
s->sym_buf[s->sym_next++] = dist; \
produces then next warning: zlib\deflate.c warning C4244: '=': conversion from 'ush' to 'uchf', possible loss of data
zlib\deflate.c warning C4244: '=': conversion from 'ush' to 'uchf', possible loss of data
The warning can be supresssed by this cast: s->sym_buf[s->sym_next++] = (uchf)dist; \ But I am not sure is it safe to do so or not.
s->sym_buf[s->sym_next++] = (uchf)dist; \
Microsoft Visual Studio 2019 is checked.
The text was updated successfully, but these errors were encountered:
Fixed 3df8424
Sorry, something went wrong.
No branches or pull requests
This line of code in the deflate.h
s->sym_buf[s->sym_next++] = dist; \
produces then next warning:
zlib\deflate.c warning C4244: '=': conversion from 'ush' to 'uchf', possible loss of data
The warning can be supresssed by this cast:
s->sym_buf[s->sym_next++] = (uchf)dist; \
But I am not sure is it safe to do so or not.
Microsoft Visual Studio 2019 is checked.
The text was updated successfully, but these errors were encountered: