| 833 | template <typename T> |
| 834 | template <typename U> |
| 835 | bool Promise<T>::_set(U&& u) |
| 836 | { |
| 837 | if (!f.data->associated) { |
| 838 | return f.set(std::forward<U>(u)); |
| 839 | } |
| 840 | return false; |
| 841 | } |
| 842 | |
| 843 | |
| 844 | template <typename T> |
nothing calls this directly
no test coverage detected