Commit 8efa7cc
committed
Avoid checking if an unsigned number is below 0
`object_bits <= 0` suggests that `object_bits` could be below zero. This
is not possible because `object_bits` is unsigned. Checking for equal to
zero makes it explicit that we are checking for one specific value.1 parent ba0fdb6 commit 8efa7cc
1 file changed
+1
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
786 | 786 | | |
787 | 787 | | |
788 | 788 | | |
789 | | - | |
| 789 | + | |
790 | 790 | | |
791 | 791 | | |
792 | 792 | | |
| |||
0 commit comments