diff options
Diffstat (limited to 'tools/lldb-mi/MICmdCmdSupportList.h')
-rw-r--r-- | tools/lldb-mi/MICmdCmdSupportList.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/lldb-mi/MICmdCmdSupportList.h b/tools/lldb-mi/MICmdCmdSupportList.h index 16c140bca349..a317b079247b 100644 --- a/tools/lldb-mi/MICmdCmdSupportList.h +++ b/tools/lldb-mi/MICmdCmdSupportList.h @@ -45,8 +45,8 @@ class CMICmdCmdSupportListFeatures : public CMICmdBase // Overridden: public: // From CMICmdInvoker::ICmd - virtual bool Execute(void); - virtual bool Acknowledge(void); + bool Execute(void) override; + bool Acknowledge(void) override; // From CMICmnBase - /* dtor */ virtual ~CMICmdCmdSupportListFeatures(void); + /* dtor */ ~CMICmdCmdSupportListFeatures(void) override; }; |