| 149 | /// @return result containing the error |
| 150 | template<typename T> |
| 151 | PromiseResult<T> make_error(const Error& error) { |
| 152 | return PromiseResult<T>(error); |
| 153 | } |
| 154 | |
| 155 | /// @brief Helper function to create an error result (move) |
| 156 | /// @tparam T The value type |