GitHub
12/04/2023, 3:11 PMmagic/database/DBio.c::DBOpenOnly calls dbReadOpen(CellDef *, bool, bool, int) with a pointer for the second argument. While technically valid C, newer compilers (Clang 16) have recently frowned upon implicit pointer-to-int conversion, requiring the flag -Wno-int-conversion or else an error is raised.
Given that there is one such instance in the codebase, I think fixing it would be the simplest solution.
RTimothyEdwards/magic
✅ All checks have passed
3/3 successful checksGitHub
12/04/2023, 3:34 PM