Skip to content

Commit

Permalink
[MISC] automatic linting
Browse files Browse the repository at this point in the history
  • Loading branch information
seqan-actions committed Aug 23, 2023
1 parent 96456d7 commit 525c4a6
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions test/unit/hibf/hierarchical_interleaved_bloom_filter_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
#include <cstddef> // for size_t
#include <functional> // for function
#include <iostream>
#include <vector> // for vector, allocator
#include <vector> // for vector, allocator

#include <hibf/config.hpp> // for insert_iterator, config
#include <hibf/hierarchical_interleaved_bloom_filter.hpp> // for hierarchical_interleaved_bloom_filter
Expand Down Expand Up @@ -49,13 +49,13 @@ TEST(hibf_test, build_from_layout)
std::vector<std::vector<size_t>> hashes{{1u, 2u, 3u, 4u, 5u, 6u, 7u, 8u, 9u, 10u}, {1u, 2u, 3u, 4u, 5u}};

auto input_fn = [&](size_t const num, hibf::insert_iterator it)
{
for (auto const hash : hashes[num])
it = hash;
};
{
for (auto const hash : hashes[num])
it = hash;
};

hibf::test::tmp_directory tmp{};
std::filesystem::path layout_filename{tmp.path()/"dummy.layout"};
std::filesystem::path layout_filename{tmp.path() / "dummy.layout"};

{
std::ofstream stream{layout_filename};
Expand Down

0 comments on commit 525c4a6

Please sign in to comment.