diff options
Diffstat (limited to 'tools/lldb-mi/MICmnThreadMgrStd.h')
-rw-r--r-- | tools/lldb-mi/MICmnThreadMgrStd.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/lldb-mi/MICmnThreadMgrStd.h b/tools/lldb-mi/MICmnThreadMgrStd.h index 8f2d207995c6..fef999b2a7b1 100644 --- a/tools/lldb-mi/MICmnThreadMgrStd.h +++ b/tools/lldb-mi/MICmnThreadMgrStd.h @@ -35,8 +35,8 @@ class CMICmnThreadMgrStd : public CMICmnBase, public MI::ISingleton<CMICmnThread // Methods: public: - bool Initialize(void); - bool Shutdown(void); + bool Initialize(void) override; + bool Shutdown(void) override; bool ThreadAllTerminate(void); // Ask all threads to stop (caution) template <typename T> // Ask the thread manager to start and stop threads on our behalf @@ -58,7 +58,7 @@ class CMICmnThreadMgrStd : public CMICmnBase, public MI::ISingleton<CMICmnThread // Overridden: private: // From CMICmnBase - /* dtor */ virtual ~CMICmnThreadMgrStd(void); + /* dtor */ ~CMICmnThreadMgrStd(void) override; // Attributes: private: |