2
0
mirror of https://github.com/boostorg/thread.git synced 2026-02-12 00:22:19 +00:00

fix strike characted.

This commit is contained in:
Vicente J. Botet Escriba
2017-09-26 08:00:44 +02:00
parent f02f23eff5
commit b20ea9ebb1

View File

@@ -339,7 +339,7 @@ namespace boost
return start_thread_noexcept();
#else
uintptr_t const new_thread=_beginthreadex(0,static_cast<unsigned int>(attr.get_stack_size()),&thread_start_function,thread_info.get(),
CREATE_SUSPENDED | STACK_SIZE_PARAM_IS_A_RESERVATION, &thread_info->id);
CREATE_SUSPENDED | STACK_SIZE_PARAM_IS_A_RESERVATION, &thread_info->id);
if(!new_thread)
{
return false;