Closed coatless closed 7 years ago
From:
../inst/include/sitmo.h:229:11: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] if (z < 8 - _o_counter) {
../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)) {
From:
To: