X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fcore%2Fthread_private.h;h=f133d6025fcb41e4f30c8b9ed35e62edbd35991a;hb=af9f2e378f3adea7e636bac3c320ad2272af7612;hp=f64c582c6e17a0bfa6760ec36c5618cbd8c8761d;hpb=609c9a508cfdc7b42c46c4f21d17639204165a00;p=libs%2Fcore.git diff --git a/source/core/thread_private.h b/source/core/thread_private.h index f64c582..f133d60 100644 --- a/source/core/thread_private.h +++ b/source/core/thread_private.h @@ -1,15 +1,14 @@ #ifndef MSP_CORE_THREAD_PRIVATE_H_ #define MSP_CORE_THREAD_PRIVATE_H_ +#include "thread.h" #include "thread_platform.h" namespace Msp { struct Thread::Private { - ThreadHandle handle; - - Private(): handle(0) { } + ThreadHandle handle = 0; static ThreadReturn THREAD_CALL main_wrapper(void *); };