<#282 More explicit pointer truthiness check> Pull...
# openlane-development
g
#282 More explicit pointer truthiness check Pull request opened by donn
magic/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 checks