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
These just need some casting I think
andas/_libs/src/parser/tokenizer.c:1091:41: warning: comparison of integers of different signs: 'int64_t' (aka 'long long') and 'unsigned long long' [-Wsign-compare] self->lines == start_lines + line_limit) { ~~~~~~~~~~~ ^ ~~~~~~~~~~~~~~~~~~~~~~~~ pandas/_libs/src/parser/tokenizer.c:1180:15: warning: comparison of integers of different signs: 'size_t' (aka 'unsigned long') and 'int64_t' (aka 'long long') [-Wsign-compare] if (nrows > self->lines) { ~~~~~ ^ ~~~~~~~~~~~ pandas/_libs/src/parser/tokenizer.c:1196:20: warning: comparison of integers of different signs: 'size_t' (aka 'unsigned long') and 'int64_t' (aka 'long long') [-Wsign-compare] if (char_count < self->stream_len) { ~~~~~~~~~~ ^ ~~~~~~~~~~~~~~~~ pandas/_libs/src/parser/tokenizer.c:1244:17: warning: comparison of integers of different signs: 'size_t' (aka 'unsigned long') and 'int64_t' (aka 'long long') [-Wsign-compare] if (new_cap < self->words_cap) { ~~~~~~~ ^ ~~~~~~~~~~~~~~~ pandas/_libs/src/parser/tokenizer.c:1268:17: warning: comparison of integers of different signs: 'size_t' (aka 'unsigned long') and 'int64_t' (aka 'long long') [-Wsign-compare] if (new_cap < self->stream_cap) { ~~~~~~~ ^ ~~~~~~~~~~~~~~~~ pandas/_libs/src/parser/tokenizer.c:1296:17: warning: comparison of integers of different signs: 'size_t' (aka 'unsigned long') and 'int64_t' (aka 'long long') [-Wsign-compare] if (new_cap < self->lines_cap) { ~~~~~~~ ^ ~~~~~~~~~~~~~~~ pandas/_libs/src/parser/tokenizer.c:1351:47: warning: comparison of integers of different signs: 'long long' and 'size_t' (aka 'unsigned long') [-Wsign-compare] if (!all && self->lines - start_lines >= nrows) break;
The text was updated successfully, but these errors were encountered:
Fix c build warnings pandas-dev#17634; remove several unused funcs
4145068
Fix c build warnings #17634; remove several unused funcs (#17932)
5314578
Fix c build warnings pandas-dev#17634; remove several unused funcs (p…
9f2d60a
…andas-dev#17932)
ef5e714
a9f7f77
Successfully merging a pull request may close this issue.
These just need some casting I think
The text was updated successfully, but these errors were encountered: