Skip to content
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
7 changes: 4 additions & 3 deletions include/exec/__detail/__system_context_default_impl.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,11 @@
#pragma once

#include "__system_context_replaceability_api.hpp"
#include "stdexec/execution.hpp"
#include "exec/static_thread_pool.hpp"

#include "../../stdexec/execution.hpp"
#include "../static_thread_pool.hpp"
#if STDEXEC_ENABLE_LIBDISPATCH
# include "exec/libdispatch_queue.hpp"
# include "../libdispatch_queue.hpp" // IWYU pragma: keep
#endif

#include <atomic>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
#ifndef STDEXEC_SYSTEM_CONTEXT_REPLACEABILITY_API_H
#define STDEXEC_SYSTEM_CONTEXT_REPLACEABILITY_API_H

#include "stdexec/__detail/__execution_fwd.hpp"
#include "../../stdexec/__detail/__execution_fwd.hpp"

#include <cstdint>
#include <cstddef>
Expand Down
2 changes: 1 addition & 1 deletion include/exec/libdispatch_queue.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
# define __has_extension(x) false
# endif

# include "stdexec/execution.hpp"
# include "../stdexec/execution.hpp"
# include <dispatch/dispatch.h>

namespace exec {
Expand Down
12 changes: 6 additions & 6 deletions include/exec/start_now.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@
*/
#pragma once

#include "stdexec/__detail/__execution_fwd.hpp"
#include "../stdexec/__detail/__execution_fwd.hpp"

#include "stdexec/__detail/__concepts.hpp"
#include "stdexec/__detail/__env.hpp"
#include "stdexec/__detail/__receivers.hpp"
#include "stdexec/__detail/__senders.hpp"
#include "stdexec/__detail/__meta.hpp"
#include "../stdexec/__detail/__concepts.hpp"
#include "../stdexec/__detail/__env.hpp"
#include "../stdexec/__detail/__receivers.hpp"
#include "../stdexec/__detail/__senders.hpp"
#include "../stdexec/__detail/__meta.hpp"

#include "async_scope.hpp"

Expand Down
2 changes: 1 addition & 1 deletion include/exec/system_context.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

#include <utility>

#include "stdexec/execution.hpp"
#include "../stdexec/execution.hpp"
#include "__detail/__system_context_replaceability_api.hpp"

#ifndef STDEXEC_SYSTEM_CONTEXT_SCHEDULE_OP_SIZE
Expand Down
Loading
Loading