]> git.ipfire.org Git - thirdparty/vectorscan.git/commitdiff
fix more unused-variable warnings
authorKonstantinos Margaritis <konstantinos@vectorcamp.gr>
Wed, 17 Jan 2024 15:03:19 +0000 (17:03 +0200)
committerKonstantinos Margaritis <konstantinos@vectorcamp.gr>
Wed, 17 Jan 2024 15:03:19 +0000 (17:03 +0200)
unit/internal/multi_bit_compress.cpp

index 14c3f48049efa804e1398b1be6972503ea9611c9..e743117467b469ebd7303f51ea7cc7c13cf048a7 100644 (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 -----------------------//