Skip to content

Commit

Permalink
Fix a warning and the formatting.
Browse files Browse the repository at this point in the history
Signed-off-by: Johannes Kalmbach <[email protected]>
  • Loading branch information
joka921 committed Oct 21, 2024
1 parent 404cee1 commit 10dac10
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 0 additions & 2 deletions src/index/IndexFormatVersion.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@
// Chair of Algorithms and Data Structures.
// Author: Johannes Kalmbach <[email protected]#pragma onceburg.de>



#include <cstdint>

#include "util/DateYearDuration.h"
Expand Down
3 changes: 2 additions & 1 deletion test/LocatedTriplesTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ auto PT = [](const auto& c1, const auto& c2, const auto& c3) {
return CompressedBlockMetadata::PermutedTriple{V(c1), V(c2), V(c3)};
};
auto CBM = [](const auto firstTriple, const auto lastTriple) {
return CompressedBlockMetadata{{}, 0, firstTriple, lastTriple, {}, false};
size_t dummyBlockIndex = 0;
return CompressedBlockMetadata{{}, 0, firstTriple, lastTriple, {}, false, 0};
};

auto numBlocks =
Expand Down

0 comments on commit 10dac10

Please sign in to comment.