* It seems some new warning were added recently that exposed this. I wrote the code that included this unused variable originally and it is indeed not needed.
const int superblock_size = 8;
const int superblock_count = nb / superblock_size;
- const int remainder = nb % superblock_size;
for (int superblock_ix = 0; superblock_ix < superblock_count; superblock_ix += 1) {
int i = superblock_ix * superblock_size;