Skip to content

Commit f5e0c78

Browse files
authored
Merge pull request #265 from seqan/actions/iwyu
[MISC] IWYU
2 parents b8b6a30 + c3788c8 commit f5e0c78

File tree

65 files changed

+196
-162
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

65 files changed

+196
-162
lines changed

include/hibf/build/compute_kmers.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
#pragma once
1111

12-
#include <cinttypes> // for uint64_t
12+
#include <cstdint> // for uint64_t
1313

1414
#include <hibf/build/build_data.hpp> // for build_data
1515
#include <hibf/contrib/robin_hood.hpp> // for unordered_flat_set

include/hibf/build/construct_ibf.hpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44

55
#pragma once
66

7-
#include <cinttypes> // for uint64_t
8-
#include <cstddef> // for size_t
7+
#include <cstddef> // for size_t
8+
#include <cstdint> // for uint64_t
99

1010
#include <hibf/build/build_data.hpp> // for build_data
1111
#include <hibf/contrib/robin_hood.hpp> // for unordered_flat_set
1212
#include <hibf/interleaved_bloom_filter.hpp> // for interleaved_bloom_filter
13-
#include <hibf/layout/graph.hpp>
13+
#include <hibf/layout/graph.hpp> // for graph
1414

1515
namespace seqan::hibf::build
1616
{

include/hibf/build/insert_into_ibf.hpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@
44

55
#pragma once
66

7-
#include <cinttypes> // for uint64_t
8-
#include <cstddef> // for size_t
7+
#include <cstddef> // for size_t
8+
#include <cstdint> // for uint64_t
99

1010
#include <hibf/build/build_data.hpp> // for build_data
1111
#include <hibf/contrib/robin_hood.hpp> // for unordered_flat_set
1212
#include <hibf/interleaved_bloom_filter.hpp> // for interleaved_bloom_filter
1313
#include <hibf/layout/layout.hpp> // for layout
14-
#include <hibf/misc/timer.hpp> // for concurrent, timer
14+
#include <hibf/misc/timer.hpp> // for concurrent_timer
1515

1616
namespace seqan::hibf::build
1717
{

include/hibf/build/update_parent_kmers.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
*/
99
#pragma once
1010

11-
#include <cinttypes> // for uint64_t
11+
#include <cstdint> // for uint64_t
1212
#include <functional> // for equal_to
1313

1414
#include <hibf/contrib/robin_hood.hpp> // for unordered_flat_set, hash

include/hibf/build/update_user_bins.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
#pragma once
66

77
#include <algorithm> // for fill_n
8-
#include <cinttypes> // for int64_t
8+
#include <cstdint> // for uint64_t
99
#include <vector> // for vector
1010

1111
#include <hibf/layout/layout.hpp> // for layout

include/hibf/cereal/concepts.hpp

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,10 @@
44

55
#pragma once
66

7-
#include <cereal/details/helpers.hpp> // for InputArchiveBase, OutputArchiveBase
8-
#include <cereal/details/traits.hpp> // for InputArchiveBase, OutputArchiveBase
7+
#include <type_traits> // for is_base_of_v
8+
9+
#include <cereal/details/helpers.hpp> // for OutputArchiveBase, InputArchiveBase, BinaryInputArchive, BinaryOutputA...
10+
#include <cereal/details/traits.hpp> // for TextArchive
911

1012
#include <hibf/platform.hpp>
1113

include/hibf/config.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44

55
#pragma once
66

7-
#include <cinttypes> // for uint32_t, uint8_t
87
#include <cstddef> // for size_t
8+
#include <cstdint> // for uint32_t, uint8_t
99
#include <functional> // for function
1010
#include <iosfwd> // for istream, ostream
1111

include/hibf/hierarchical_interleaved_bloom_filter.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66

77
#include <algorithm> // for __fn, fill, sort
88
#include <cassert> // for assert
9-
#include <cinttypes> // for uint64_t, uint16_t, uint32_t
109
#include <concepts> // for integral, unsigned_integral
1110
#include <cstddef> // for size_t
11+
#include <cstdint> // for uint64_t, uint16_t, uint32_t
1212
#include <limits> // for numeric_limits
1313
#include <memory> // for addressof
1414
#include <ranges> // for forward_range, range_value_t, range

include/hibf/interleaved_bloom_filter.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212
#include <algorithm> // for fill
1313
#include <array> // for array
1414
#include <cassert> // for assert
15-
#include <cinttypes> // for uint32_t, uint16_t, uint64_t
1615
#include <concepts> // for integral, same_as, unsigned_integral
16+
#include <cstdint> // for uint32_t, uint16_t, uint64_t
1717
#include <cstring> // for size_t
1818
#include <memory> // for addressof
1919
#include <ranges> // for range, range_reference_t, range_value_t, forward_range, input_...

include/hibf/layout/data_store.hpp

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@
44

55
#pragma once
66

7-
#include <cassert> // for assert
8-
#include <cinttypes> // for uint64_t
9-
#include <cstddef> // for size_t
10-
#include <numeric> // for iota
11-
#include <string> // for string
12-
#include <vector> // for vector
7+
#include <cassert> // for assert
8+
#include <cstddef> // for size_t
9+
#include <cstdint> // for uint64_t
10+
#include <numeric> // for iota
11+
#include <string> // for basic_string, string
12+
#include <vector> // for vector
1313

1414
#include <hibf/layout/layout.hpp> // for layout
1515
#include <hibf/misc/timer.hpp> // for concurrent_timer

0 commit comments

Comments
 (0)