diff options
Diffstat (limited to 'tools/lldb-mi/MICmdCmdGdbThread.h')
-rw-r--r-- | tools/lldb-mi/MICmdCmdGdbThread.h | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/tools/lldb-mi/MICmdCmdGdbThread.h b/tools/lldb-mi/MICmdCmdGdbThread.h index 6a3804a1c89b3..40d8b78378982 100644 --- a/tools/lldb-mi/MICmdCmdGdbThread.h +++ b/tools/lldb-mi/MICmdCmdGdbThread.h @@ -26,26 +26,23 @@ //++ ============================================================================ // Details: MI command class. MI commands derived from the command base class. // *this class implements GDB command "thread". -// Gotchas: None. -// Authors: Illya Rudkin 25/02/2014. -// Changes: None. //-- class CMICmdCmdGdbThread : public CMICmdBase { // Statics: public: // Required by the CMICmdFactory when registering *this command - static CMICmdBase *CreateSelf(void); + static CMICmdBase *CreateSelf(); // Methods: public: - /* ctor */ CMICmdCmdGdbThread(void); + /* ctor */ CMICmdCmdGdbThread(); // Overridden: public: // From CMICmdInvoker::ICmd - bool Execute(void) override; - bool Acknowledge(void) override; + bool Execute() override; + bool Acknowledge() override; // From CMICmnBase - /* dtor */ ~CMICmdCmdGdbThread(void) override; + /* dtor */ ~CMICmdCmdGdbThread() override; }; |