Closed SooLee closed 9 months ago
Please merge and release 0.3.8
Hi!
Another issue related to this is the implicit conversion from pointer to integer (-Wint-conversion
) which is now treated as an error by clang due to changes in C99 (see here).
This is causing build failures on bioconda's macOS CI - link.
One quick workaround would be to update the Makefile to add -Wno-int-conversion
, however after looking at the implementation of ti_iter_first()
I don't think is a good idea.
The function appears to be returning the address of a local variable (which used to be implicitly cast to integer).
Can you please confirm that this is this the intended behavior of ti_iter_first()
?
Fixing the following error due to recent C standard change.
This change addresses https://github.com/4dn-dcic/pairix/issues/74