diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/Thread.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/Thread.cpp b/src/Thread.cpp index 9c1a920..15ddf0b 100644 --- a/src/Thread.cpp +++ b/src/Thread.cpp @@ -32,7 +32,6 @@ pthread_key_t Thread::_thread_key; Thread::Thread(const std::string& name) : _exit_flag(false) - , _context(0) , _name(name) , _pthread_exists(false) , _own_thread(true) @@ -45,7 +44,6 @@ Thread::Thread(const std::string& name) /** Must be called from thread */ Thread::Thread(pthread_t thread, const std::string& name) : _exit_flag(false) - , _context(0) , _name(name) , _pthread_exists(true) , _own_thread(false) |