Address signed and unsigned integer comparison in sitmo header
Closed this issue · 0 comments
coatless commented
From:
../inst/include/sitmo.h:229:11: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
if (z < 8 - _o_counter) {
To:
if (z < (uint64_t)(8 - _o_counter)) {