Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[MISC] IWYU #259

Merged
merged 1 commit into from
Dec 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion include/hibf/hierarchical_interleaved_bloom_filter.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,15 @@

#include <algorithm> // for __fn, fill, sort
#include <cassert> // for assert
#include <cinttypes> // for uint64_t, uint16_t
#include <cinttypes> // for uint64_t, uint16_t, uint32_t
#include <concepts> // for integral, unsigned_integral
#include <cstddef> // for size_t
#include <limits> // for numeric_limits
#include <memory> // for addressof
#include <ranges> // for forward_range, range_value_t, range
#include <vector> // for vector, operator==

#include <cereal/cereal.hpp> // for make_nvp
#include <cereal/macros.hpp> // for CEREAL_SERIALIZE_FUNCTION_NAME
#include <cereal/types/vector.hpp> // IWYU pragma: keep

Expand Down
7 changes: 4 additions & 3 deletions include/hibf/interleaved_bloom_filter.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,15 @@
#include <algorithm> // for fill
#include <array> // for array
#include <cassert> // for assert
#include <cinttypes> // for uint16_t, uint64_t
#include <cinttypes> // for uint32_t, uint16_t, uint64_t
#include <concepts> // for integral, same_as, unsigned_integral
#include <cstring> // for size_t
#include <memory> // for addressof
#include <ranges> // for range, forward_range, input_range, range_reference_t, range_va...
#include <ranges> // for range, range_reference_t, range_value_t, forward_range, input_...
#include <type_traits> // for remove_cvref_t
#include <vector> // for operator==, vector

#include <cereal/cereal.hpp> // for make_nvp
#include <cereal/macros.hpp> // for CEREAL_SERIALIZE_FUNCTION_NAME
#include <cereal/types/base_class.hpp> // for base_class

Expand All @@ -28,7 +29,7 @@
#include <hibf/misc/bit_vector.hpp> // for bit_vector
#include <hibf/misc/counting_vector.hpp> // for counting_vector
#include <hibf/misc/next_multiple_of_64.hpp> // for next_multiple_of_64
#include <hibf/platform.hpp> // for HIBF_HAS_AVX512
#include <hibf/platform.hpp> // for HIBF_CONSTEXPR_VECTOR, HIBF_HAS_AVX512

namespace seqan::hibf
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@
// SPDX-FileCopyrightText: 2016-2024, Knut Reinert & MPI für molekulare Genetik
// SPDX-License-Identifier: CC0-1.0

#include <hibf/interleaved_bloom_filter.hpp> // for interleaved_bloom_filter, bin_index, bin_count, bin_size
#include <iostream> // for basic_ostream, operator<<, cout, boolalpha, basic_ios

#include <hibf/interleaved_bloom_filter.hpp> // for interleaved_bloom_filter, bin_count, bin_index, bin_size
#include <hibf/misc/print.hpp> // for print, print_t

int main()
Expand Down
Loading