Skip to content

Commit e0fa517

Browse files
authored
try to bring down the length of symbols a bit (#1498)
1 parent 31adc81 commit e0fa517

13 files changed

Lines changed: 336 additions & 315 deletions

include/exec/__detail/__system_context_default_impl.hpp

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,11 @@
1616
#pragma once
1717

1818
#include "__system_context_replaceability_api.hpp"
19-
#include "stdexec/execution.hpp"
20-
#include "exec/static_thread_pool.hpp"
19+
20+
#include "../../stdexec/execution.hpp"
21+
#include "../static_thread_pool.hpp"
2122
#if STDEXEC_ENABLE_LIBDISPATCH
22-
# include "exec/libdispatch_queue.hpp"
23+
# include "../libdispatch_queue.hpp" // IWYU pragma: keep
2324
#endif
2425

2526
#include <atomic>

include/exec/__detail/__system_context_replaceability_api.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
#ifndef STDEXEC_SYSTEM_CONTEXT_REPLACEABILITY_API_H
1818
#define STDEXEC_SYSTEM_CONTEXT_REPLACEABILITY_API_H
1919

20-
#include "stdexec/__detail/__execution_fwd.hpp"
20+
#include "../../stdexec/__detail/__execution_fwd.hpp"
2121

2222
#include <cstdint>
2323
#include <cstddef>

include/exec/libdispatch_queue.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
# define __has_extension(x) false
2828
# endif
2929

30-
# include "stdexec/execution.hpp"
30+
# include "../stdexec/execution.hpp"
3131
# include <dispatch/dispatch.h>
3232

3333
namespace exec {

include/exec/start_now.hpp

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,13 @@
1515
*/
1616
#pragma once
1717

18-
#include "stdexec/__detail/__execution_fwd.hpp"
18+
#include "../stdexec/__detail/__execution_fwd.hpp"
1919

20-
#include "stdexec/__detail/__concepts.hpp"
21-
#include "stdexec/__detail/__env.hpp"
22-
#include "stdexec/__detail/__receivers.hpp"
23-
#include "stdexec/__detail/__senders.hpp"
24-
#include "stdexec/__detail/__meta.hpp"
20+
#include "../stdexec/__detail/__concepts.hpp"
21+
#include "../stdexec/__detail/__env.hpp"
22+
#include "../stdexec/__detail/__receivers.hpp"
23+
#include "../stdexec/__detail/__senders.hpp"
24+
#include "../stdexec/__detail/__meta.hpp"
2525

2626
#include "async_scope.hpp"
2727

include/exec/system_context.hpp

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

1818
#include <utility>
1919

20-
#include "stdexec/execution.hpp"
20+
#include "../stdexec/execution.hpp"
2121
#include "__detail/__system_context_replaceability_api.hpp"
2222

2323
#ifndef STDEXEC_SYSTEM_CONTEXT_SCHEDULE_OP_SIZE

0 commit comments

Comments
 (0)