diff options
Diffstat (limited to 'include/lldb/Target/ThreadList.h')
-rw-r--r-- | include/lldb/Target/ThreadList.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/include/lldb/Target/ThreadList.h b/include/lldb/Target/ThreadList.h index 12c430c9c8d89..e6489b25e558c 100644 --- a/include/lldb/Target/ThreadList.h +++ b/include/lldb/Target/ThreadList.h @@ -32,8 +32,7 @@ public: ThreadList (const ThreadList &rhs); - virtual - ~ThreadList (); + ~ThreadList() override; const ThreadList& operator = (const ThreadList& rhs); @@ -128,8 +127,8 @@ public: void SetStopID (uint32_t stop_id); - virtual Mutex & - GetMutex (); + Mutex & + GetMutex() override; void Update (ThreadList &rhs); @@ -150,9 +149,10 @@ protected: lldb::tid_t m_selected_tid; ///< For targets that need the notion of a current thread. private: + ThreadList (); }; } // namespace lldb_private -#endif // liblldb_ThreadList_h_ +#endif // liblldb_ThreadList_h_ |