diff options
Diffstat (limited to 'tools/lldb-mi/MICmdInvoker.h')
-rw-r--r-- | tools/lldb-mi/MICmdInvoker.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/tools/lldb-mi/MICmdInvoker.h b/tools/lldb-mi/MICmdInvoker.h index a03c2d36103a..b178d4322577 100644 --- a/tools/lldb-mi/MICmdInvoker.h +++ b/tools/lldb-mi/MICmdInvoker.h @@ -33,7 +33,7 @@ class CMICmnStreamStdout; // exceed a time limit which if it exceeds informs the command(s) to // stop work. // The work by the Invoker is carried out in the main thread. -// The Invoker takes ownersip of any commands created which means it +// The Invoker takes ownership of any commands created which means it // is the only object to delete them when a command is finished working. // A singleton class. // Gotchas: None. @@ -68,8 +68,8 @@ class CMICmdInvoker : public CMICmnBase, public CMICmdMgrSetCmdDeleteCallback::I // Methods: public: - bool Initialize(void); - bool Shutdown(void); + bool Initialize(void) override; + bool Shutdown(void) override; bool CmdExecute(CMICmdBase &vCmd); bool CmdExecuteFinished(CMICmdBase &vCmd); @@ -92,9 +92,9 @@ class CMICmdInvoker : public CMICmnBase, public CMICmdMgrSetCmdDeleteCallback::I // Overridden: private: // From CMICmnBase - /* dtor */ virtual ~CMICmdInvoker(void); + /* dtor */ ~CMICmdInvoker(void) override; // From CMICmdMgrSetCmdDeleteCallback::ICallback - virtual void Delete(SMICmdData &vCmd); + void Delete(SMICmdData &vCmd) override; // Attributes: private: |