aboutsummaryrefslogtreecommitdiff
path: root/tools/lldb-mi/MIDriverMgr.h
diff options
context:
space:
mode:
Diffstat (limited to 'tools/lldb-mi/MIDriverMgr.h')
-rw-r--r--tools/lldb-mi/MIDriverMgr.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/tools/lldb-mi/MIDriverMgr.h b/tools/lldb-mi/MIDriverMgr.h
index 53fc984f3178..c84ef04c75c4 100644
--- a/tools/lldb-mi/MIDriverMgr.h
+++ b/tools/lldb-mi/MIDriverMgr.h
@@ -32,7 +32,7 @@
// those objects (modules/components) to support it's own functionality).
// The Driver manager is the first object instantiated as part of the
// MI code base. It is also the first thing to interpret the command
-// line arguments passed to the executeable. Bases on options it
+// line arguments passed to the executable. Bases on options it
// understands the manage will set up the appropriate driver or give
// help information. Other options are passed on to the driver chosen
// to do work.
@@ -75,8 +75,8 @@ class CMIDriverMgr : public CMICmnBase, public MI::ISingleton<CMIDriverMgr>
// Methods:
public:
// MI system
- bool Initialize(void);
- bool Shutdown(void);
+ bool Initialize(void) override;
+ bool Shutdown(void) override;
//
CMIUtilString GetAppVersion(void) const;
bool RegisterDriver(const IDriver &vrADriver, const CMIUtilString &vrDriverID);
@@ -115,7 +115,7 @@ class CMIDriverMgr : public CMICmnBase, public MI::ISingleton<CMIDriverMgr>
// Overridden:
private:
// From CMICmnBase
- /* dtor */ virtual ~CMIDriverMgr(void);
+ /* dtor */ ~CMIDriverMgr(void) override;
// Attributes:
private: