Nit
(1) By Bo Lindbergh (_blgl_) on 2025-04-06 02:40:53 [source]
This check-in is a little off. It uses the mask ~(u64)1
to clear the least significant bit everywhere except in the function sqlite3_bind_text64
, where the mask ~(u16)1
is used instead. This doesn't actually produce incorrect results (on two's complement hardware, at least), but it still looks bad.