Fix compiler warning
This commit is contained in:
parent
32833faec2
commit
c86fbbd823
2 changed files with 3 additions and 1 deletions
Binary file not shown.
|
@ -384,7 +384,9 @@ struct ServiceContextBuilder {
|
||||||
template <utempl::ConstexprString name>
|
template <utempl::ConstexprString name>
|
||||||
static consteval auto FindComponent() {
|
static consteval auto FindComponent() {
|
||||||
if constexpr(name == kBasicTaskProcessorName) {
|
if constexpr(name == kBasicTaskProcessorName) {
|
||||||
return [] -> engine::basic::TaskProcessor<config.template Get<"threads">() - 1> {}();
|
return [] -> engine::basic::TaskProcessor<config.template Get<"threads">() - 1> {
|
||||||
|
std::unreachable();
|
||||||
|
}();
|
||||||
} else {
|
} else {
|
||||||
return []<typename... TTs, utempl::ConstexprString... names, Options... Options>
|
return []<typename... TTs, utempl::ConstexprString... names, Options... Options>
|
||||||
(const ServiceContextBuilder<config, ComponentConfig<names, TTs, Options>...>&)
|
(const ServiceContextBuilder<config, ComponentConfig<names, TTs, Options>...>&)
|
||||||
|
|
Loading…
Reference in a new issue