Skip to content

Commit a86f95a

Browse files
committed
Revert my change and add right Header
1 parent e4d4c4d commit a86f95a

File tree

2 files changed

+6
-7
lines changed

2 files changed

+6
-7
lines changed

.clang-format

+4-6
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
---
2-
BasedOnStyle: LLVM
3-
ConstructorInitializerIndentWidth: 2
4-
ContinuationIndentWidth: 2
5-
IndentWidth: 2
6-
TabWidth: 2
7-
UseTab: Never
2+
BasedOnStyle: LLVM
3+
Language: Json
4+
IndentWidth: 2
5+
UseTab: Never
86
---
97
Language: Cpp
108
AccessModifierOffset: -2

include/beman/execution26/detail/sched_env.hpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
#define INCLUDED_BEMAN_EXECUTION26_DETAIL_SCHED_ENV
66

77
#include <beman/execution26/detail/get_domain.hpp>
8+
#include <beman/execution26/detail/default_domain.hpp>
89
#include <beman/execution26/detail/get_scheduler.hpp>
910
#include <type_traits>
1011
#include <utility>
@@ -32,7 +33,7 @@ namespace beman::execution26::detail
3233
if constexpr (requires{ this-> sched.query(q); })
3334
return this->sched.query(q);
3435
else
35-
return ::beman::execution26::get_domain;
36+
return ::beman::execution26::default_domain{};
3637
}
3738
};
3839

0 commit comments

Comments
 (0)