back

by uecker·4mo ago·view on hn ↗
That makes me worry that you code actually has more issues because with small _BitInt you would run into signed overflow more often.
1 comments
I use "-fno-strict-overflow" so it shouldn't be ub in any case. Also basically never use signed integers and I always use "checked" methods for doing aritmetic except performance critical loops.