Skip to content

Commit

Permalink
Merge pull request #159 from seqan/actions/iwyu
Browse files Browse the repository at this point in the history
[MISC] IWYU
  • Loading branch information
eseiler authored Nov 5, 2023
2 parents 84c4aea + 6a767fa commit b6d288e
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 1 deletion.
1 change: 1 addition & 0 deletions include/hibf/build/update_parent_kmers.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
*/
#pragma once

#include <algorithm> // for max
#include <cinttypes> // for uint64_t

#include <hibf/contrib/robin_hood.hpp> // for unordered_flat_set
Expand Down
4 changes: 3 additions & 1 deletion include/hibf/misc/timer.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,11 @@

#pragma once

#include <atomic> // for atomic
#include <algorithm> // for max
#include <atomic> // for atomic, memory_order_relaxed
#include <cassert> // for assert
#include <chrono> // for steady_clock, duration, operator-, time_point
#include <cinttypes> // for uint64_t
#include <type_traits> // for conditional_t

#include <hibf/platform.hpp>
Expand Down
1 change: 1 addition & 0 deletions src/build/compute_kmers.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
* \author Enrico Seiler <enrico.seiler AT fu-berlin.de>
*/

#include <algorithm> // for max
#include <cinttypes> // for uint64_t
#include <functional> // for function

Expand Down
1 change: 1 addition & 0 deletions src/build/construct_ibf.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
// SPDX-FileCopyrightText: 2016-2023, Knut Reinert & MPI für molekulare Genetik
// SPDX-License-Identifier: BSD-3-Clause

#include <algorithm> // for max
#include <cassert> // for assert
#include <cinttypes> // for uint64_t
#include <cmath> // for ceil
Expand Down
1 change: 1 addition & 0 deletions src/build/insert_into_ibf.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
// SPDX-FileCopyrightText: 2016-2023, Knut Reinert & MPI für molekulare Genetik
// SPDX-License-Identifier: BSD-3-Clause

#include <algorithm> // for max
#include <cassert> // for assert
#include <cinttypes> // for uint64_t
#include <cstddef> // for size_t
Expand Down

1 comment on commit b6d288e

@vercel
Copy link

@vercel vercel bot commented on b6d288e Nov 5, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

hibf – ./

hibf-git-main-seqan.vercel.app
hibf.vercel.app
hibf-seqan.vercel.app

Please sign in to comment.