mirror of
https://github.com/VectorCamp/vectorscan.git
synced 2025-06-28 16:41:01 +03:00
fix more unused-variable warnings
This commit is contained in:
parent
4d2bcff7b4
commit
afb1a1705f
@ -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 -----------------------//
|
||||
|
Loading…
x
Reference in New Issue
Block a user