src/heapy/hv_cli_findex.c:102:6: warning: logical not is only applied to the left hand side of this comparison [-Wlogical-not-parentheses]
Source code is
if (!PyTuple_GET_SIZE(ckc) == 3) {
Maybe better code
if (PyTuple_GET_SIZE(ckc) != 3) {
Thanks, will be fixed in 0.1.12
Log in to post a comment.
Thanks, will be fixed in 0.1.12