Skip to content

Commit

Permalink
Merge pull request #214 from seqan/actions/iwyu
Browse files Browse the repository at this point in the history
[MISC] IWYU
  • Loading branch information
eseiler authored Jul 15, 2024
2 parents 36d2d19 + 41976e4 commit 4ced393
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 9 deletions.
12 changes: 7 additions & 5 deletions include/hibf/misc/iota_vector.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,14 @@

#pragma once

#include <cassert>
#include <limits>
#include <numeric>
#include <vector>
#include <cassert> // for assert
#include <concepts> // for unsigned_integral
#include <cstddef> // for size_t
#include <limits> // for numeric_limits
#include <numeric> // for iota
#include <vector> // for vector

#include <hibf/platform.hpp>
#include <hibf/platform.hpp> // for HIBF_CONSTEXPR_VECTOR

namespace seqan::hibf
{
Expand Down
10 changes: 6 additions & 4 deletions src/layout/compute_layout.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,11 @@
// SPDX-FileCopyrightText: 2016-2024, Knut Reinert & MPI für molekulare Genetik
// SPDX-License-Identifier: BSD-3-Clause

#include <algorithm> // for __fn, sort
#include <algorithm> // for __fn, max, sort
#include <cassert> // for assert
#include <cstddef> // for size_t
#include <memory> // for addressof
#include <utility> // for move
#include <vector> // for vector

#include <hibf/config.hpp> // for config
Expand All @@ -13,9 +15,9 @@
#include <hibf/layout/data_store.hpp> // for data_store
#include <hibf/layout/hierarchical_binning.hpp> // for hierarchical_binning
#include <hibf/layout/layout.hpp> // for layout
#include <hibf/misc/iota_vector.hpp>
#include <hibf/misc/timer.hpp> // for concurrent_timer
#include <hibf/sketch/hyperloglog.hpp> // for hyperloglog
#include <hibf/misc/iota_vector.hpp> // for iota_vector
#include <hibf/misc/timer.hpp> // for concurrent_timer
#include <hibf/sketch/hyperloglog.hpp> // for hyperloglog

namespace seqan::hibf::layout
{
Expand Down

0 comments on commit 4ced393

Please sign in to comment.