fix more unused-variable warnings

This commit is contained in:
Konstantinos Margaritis 2024-01-17 17:03:19 +02:00
parent 4d2bcff7b4
commit afb1a1705f

View File

@ -402,6 +402,7 @@ TEST_P(MultiBitCompTest, CompCompressDecompressDense) {
TEST(MultiBitComp, CompIntegration1) {
// 256 + 1 --> smallest 2-level mmbit
u32 total_size = mmbit_size(257);
(void)total_size;
mmbit_holder ba(257);
//-------------------- 1 -----------------------//
@ -517,6 +518,7 @@ TEST(MultiBitComp, CompIntegration1) {
TEST(MultiBitComp, CompIntegration2) {
// 64^2 + 1 --> smallest 3-level mmbit
u32 total_size = mmbit_size(4097);
(void)total_size;
mmbit_holder ba(4097);
//-------------------- 1 -----------------------//
@ -646,6 +648,7 @@ TEST(MultiBitComp, CompIntegration2) {
TEST(MultiBitComp, CompIntegration3) {
// 64^3 + 1 --> smallest 4-level mmbit
u32 total_size = mmbit_size(262145);
(void)total_size;
mmbit_holder ba(262145);
//-------------------- 1 -----------------------//