Problem: formatting errors

Solution: run make clang-format-diff
This commit is contained in:
Luca Boccassi 2020-10-09 20:08:05 +01:00
parent f578b26790
commit 97b5f8560d

View File

@ -71,11 +71,11 @@ void zmq::thread_t::start (thread_fn *tfn_, void *arg_, const char *name_)
#endif
#if defined _WIN32_WCE
_descriptor =
(HANDLE) CreateThread (NULL, stack, &::thread_routine, this, 0, &_thread_id);
_descriptor = (HANDLE) CreateThread (NULL, stack, &::thread_routine, this,
0, &_thread_id);
#else
_descriptor = (HANDLE) _beginthreadex (NULL, stack, &::thread_routine, this, 0,
&_thread_id);
_descriptor = (HANDLE) _beginthreadex (NULL, stack, &::thread_routine, this,
0, &_thread_id);
#endif
win_assert (_descriptor != NULL);
_started = true;