| 25 | |
| 26 | template <typename T> |
| 27 | auto make_scheduler() -> T { |
| 28 | if constexpr (std::constructible_from<T, std::size_t>) { |
| 29 | return T{1}; |
| 30 | } else { |
| 31 | return T{}; |
| 32 | } |
| 33 | } |
| 34 | |
| 35 | } // namespace |
| 36 |
nothing calls this directly
no outgoing calls
no test coverage detected