diff options
Diffstat (limited to 'tools/lldb-mi/MICmdCmdFile.h')
| -rw-r--r-- | tools/lldb-mi/MICmdCmdFile.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/tools/lldb-mi/MICmdCmdFile.h b/tools/lldb-mi/MICmdCmdFile.h index 307f4f887aa5..2c1b59ca47ad 100644 --- a/tools/lldb-mi/MICmdCmdFile.h +++ b/tools/lldb-mi/MICmdCmdFile.h @@ -29,7 +29,7 @@ // Details: MI command class. MI commands derived from the command base class. // *this class implements MI command "file-exec-and-symbols". // This command does not follow the MI documentation exactly. -// Gotchas: This command has additonal flags that were not available in GDB MI. +// Gotchas: This command has additional flags that were not available in GDB MI. // See MIextensions.txt for details. // Authors: Illya Rudkin 25/02/2014. // Changes: None. @@ -48,12 +48,12 @@ class CMICmdCmdFileExecAndSymbols : public CMICmdBase // Overridden: public: // From CMICmdInvoker::ICmd - virtual bool Execute(void); - virtual bool Acknowledge(void); - virtual bool ParseArgs(void); + bool Execute(void) override; + bool Acknowledge(void) override; + bool ParseArgs(void) override; // From CMICmnBase - /* dtor */ virtual ~CMICmdCmdFileExecAndSymbols(void); - virtual bool GetExitAppOnCommandFailure(void) const; + /* dtor */ ~CMICmdCmdFileExecAndSymbols(void) override; + bool GetExitAppOnCommandFailure(void) const override; // Attributes: private: |
