We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 666df8b commit 6e944cfCopy full SHA for 6e944cf
theta/test/bit_packing_test.cpp
@@ -30,7 +30,7 @@ static const uint64_t IGOLDEN64 = 0x9e3779b97f4a7c13ULL;
30
31
TEST_CASE("pack unpack bits") {
32
uint64_t value = 0xaa55aa55aa55aa55ULL; // arbitrary starting value
33
- for (int n = 0; n < 100; ++n) {
+ for (int m = 0; m < 100; ++m) {
34
for (uint8_t bits = 1; bits <= 63; ++bits) {
35
int n = 8;
36
const uint64_t mask = (1ULL << bits) - 1;
0 commit comments