]> git.tdb.fi Git - libs/core.git/blobdiff - source/core/thread_private.h
Add a few missing default initializers
[libs/core.git] / source / core / thread_private.h
index 3c3b341565d4b1dcd12e085d6a4506d9b2ee74de..f133d6025fcb41e4f30c8b9ed35e62edbd35991a 100644 (file)
@@ -8,9 +8,7 @@ namespace Msp {
 
 struct Thread::Private
 {
-       ThreadHandle handle;
-
-       Private(): handle(0) { }
+       ThreadHandle handle = 0;
 
        static ThreadReturn THREAD_CALL main_wrapper(void *);
 };