remove unused variables

This commit is contained in:
Konstantinos Margaritis 2024-05-15 17:18:53 +03:00
parent 8260d7c906
commit 59a098504e
2 changed files with 0 additions and 4 deletions

View File

@ -401,7 +401,6 @@ TEST_P(MultiBitCompTest, CompCompressDecompressDense) {
TEST(MultiBitComp, CompIntegration1) { TEST(MultiBitComp, CompIntegration1) {
// 256 + 1 --> smallest 2-level mmbit // 256 + 1 --> smallest 2-level mmbit
//u32 total_size = mmbit_size(257);
mmbit_holder ba(257); mmbit_holder ba(257);
//-------------------- 1 -----------------------// //-------------------- 1 -----------------------//
@ -516,7 +515,6 @@ TEST(MultiBitComp, CompIntegration1) {
TEST(MultiBitComp, CompIntegration2) { TEST(MultiBitComp, CompIntegration2) {
// 64^2 + 1 --> smallest 3-level mmbit // 64^2 + 1 --> smallest 3-level mmbit
//u32 total_size = mmbit_size(4097);
mmbit_holder ba(4097); mmbit_holder ba(4097);
//-------------------- 1 -----------------------// //-------------------- 1 -----------------------//
@ -645,7 +643,6 @@ TEST(MultiBitComp, CompIntegration2) {
TEST(MultiBitComp, CompIntegration3) { TEST(MultiBitComp, CompIntegration3) {
// 64^3 + 1 --> smallest 4-level mmbit // 64^3 + 1 --> smallest 4-level mmbit
//u32 total_size = mmbit_size(262145);
mmbit_holder ba(262145); mmbit_holder ba(262145);
//-------------------- 1 -----------------------// //-------------------- 1 -----------------------//

View File

@ -55,7 +55,6 @@ unique_ptr<hs_platform_info> xcompileReadMode(const char *s) {
assert(!err); assert(!err);
string str(s); string str(s);
//string mode = str.substr(0, str.find(":"));
string opt = str.substr(str.find(":")+1, str.npos); string opt = str.substr(str.find(":")+1, str.npos);
bool found_mode = false; bool found_mode = false;