diff options
Diffstat (limited to 'include/threadengine.h')
-rw-r--r-- | include/threadengine.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/threadengine.h b/include/threadengine.h index 39f150566..e656eb6b3 100644 --- a/include/threadengine.h +++ b/include/threadengine.h @@ -49,11 +49,11 @@ class CoreExport Thread public: /** Opaque thread state managed by threading engine */ - ThreadData* state; + ThreadData state; /** Set Creator to NULL at this point */ - Thread() : ExitFlag(false), state(NULL) + Thread() : ExitFlag(false) { } |