Skip to content

Commit

Permalink
Fix inspect errors in execution files
Browse files Browse the repository at this point in the history
  • Loading branch information
msimberg committed Jan 6, 2021
1 parent 392cf85 commit c38672c
Show file tree
Hide file tree
Showing 10 changed files with 23 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@
#include <hpx/functional/traits/is_invocable.hpp>
#include <hpx/type_support/equality.hpp>

#include <cstddef>
#include <exception>
#include <memory>
#include <type_traits>
#include <utility>

Expand Down
2 changes: 2 additions & 0 deletions libs/core/execution_base/tests/unit/basic_executor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@
#include <hpx/modules/testing.hpp>
#include <type_traits>

#include <cstddef>

static std::size_t member_execute_calls = 0;
static std::size_t tag_invoke_execute_calls = 0;

Expand Down
2 changes: 2 additions & 0 deletions libs/core/execution_base/tests/unit/basic_schedule.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@
#include <hpx/modules/testing.hpp>
#include <hpx/type_support/unused.hpp>

#include <cstddef>
#include <exception>
#include <type_traits>

static std::size_t member_schedule_calls = 0;
Expand Down
1 change: 1 addition & 0 deletions libs/core/execution_base/tests/unit/basic_sender.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
#include <hpx/modules/functional.hpp>
#include <hpx/modules/testing.hpp>

#include <cstddef>
#include <exception>
#include <string>
#include <type_traits>
Expand Down
4 changes: 4 additions & 0 deletions libs/core/execution_base/tests/unit/basic_submit.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@
#include <hpx/execution_base/sender.hpp>
#include <hpx/modules/testing.hpp>

#include <cstddef>
#include <exception>
#include <utility>

static std::size_t start_calls = 0;
static std::size_t connect_calls = 0;
static std::size_t member_submit_calls = 0;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@

#include <exception>
#include <tuple>
#include <utility>

namespace hpx { namespace execution { namespace experimental {
template <typename... Variants>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@
#include <hpx/execution_base/sender.hpp>
#include <hpx/type_support/pack.hpp>

#include <exception>
#include <type_traits>
#include <utility>

namespace hpx { namespace execution { namespace experimental {
namespace detail {
template <typename Variant>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@
#include <hpx/synchronization/condition_variable.hpp>
#include <hpx/synchronization/mutex.hpp>

#include <exception>
#include <utility>

namespace hpx { namespace execution { namespace experimental {
namespace detail {
struct wait_receiver
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,10 @@
#include <hpx/execution_base/receiver.hpp>
#include <hpx/execution_base/sender.hpp>

#include <cstddef>
#include <exception>
#include <type_traits>
#include <utility>

namespace hpx { namespace execution { namespace experimental {
struct executor
Expand Down
1 change: 1 addition & 0 deletions libs/parallelism/executors/tests/unit/p0443_executor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
#include <hpx/thread.hpp>

#include <atomic>
#include <cstddef>
#include <string>
#include <type_traits>

Expand Down

0 comments on commit c38672c

Please sign in to comment.