2
0
mirror of https://github.com/boostorg/process.git synced 2026-01-19 04:22:15 +00:00

windows gcc compile fix

This commit is contained in:
Klemens Morgenstern
2024-11-11 21:19:49 +08:00
parent 58586e420c
commit 64c4cdac83

View File

@@ -308,7 +308,7 @@ struct basic_process_handle_win
public:
template<BOOST_PROCESS_V2_COMPLETION_TOKEN_FOR(void(error_code, native_exit_code_type))
WaitHandler = net::default_completion_token_t<executor_type>>
auto async_wait(WaitHandler &&handler = default_completion_token_t<executor_type>())
auto async_wait(WaitHandler &&handler = net::default_completion_token_t<executor_type>())
-> decltype(net::async_compose<WaitHandler, void(error_code, native_exit_code_type)>(
async_wait_op_{handle_}, handler, handle_))
{