From 97b5f8560d9ce561949537b6c4c98e8eb2138148 Mon Sep 17 00:00:00 2001 From: Luca Boccassi Date: Fri, 9 Oct 2020 20:08:05 +0100 Subject: [PATCH] Problem: formatting errors Solution: run make clang-format-diff --- src/thread.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/thread.cpp b/src/thread.cpp index bd3af0d823..c754e9cd9f 100644 --- a/src/thread.cpp +++ b/src/thread.cpp @@ -67,15 +67,15 @@ void zmq::thread_t::start (thread_fn *tfn_, void *arg_, const char *name_) // set default stack size to 4MB to avoid std::map stack overflow on x64 unsigned int stack = 0; #if defined _WIN64 - stack = 0x400000; + stack = 0x400000; #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;