| 121 | |
| 122 | public: |
| 123 | static constexpr bool is_inlinable() noexcept { |
| 124 | return std::is_nothrow_move_constructible_v<callable_type> && sizeof(callable_type) <= task_constants::buffer_size; |
| 125 | } |
| 126 | |
| 127 | template<class passed_callable_type> |
| 128 | static void build(void* dst, passed_callable_type&& callable) { |
nothing calls this directly
no outgoing calls
no test coverage detected