diff options
Diffstat (limited to 'tools/lldb-mi/MICmdInterpreter.h')
-rw-r--r-- | tools/lldb-mi/MICmdInterpreter.h | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/tools/lldb-mi/MICmdInterpreter.h b/tools/lldb-mi/MICmdInterpreter.h index e24308484d238..5aa9445c97c0f 100644 --- a/tools/lldb-mi/MICmdInterpreter.h +++ b/tools/lldb-mi/MICmdInterpreter.h @@ -23,9 +23,6 @@ class CMICmdFactory; // matches Machine Interface (MI) format and commands defined in the // MI application. // A singleton class. -// Gotchas: None. -// Authors: Illya Rudkin 18/02/2014. -// Changes: None. //-- class CMICmdInterpreter : public CMICmnBase, public MI::ISingleton<CMICmdInterpreter> { @@ -35,13 +32,13 @@ class CMICmdInterpreter : public CMICmnBase, public MI::ISingleton<CMICmdInterpr public: // Methods: public: - bool Initialize(void) override; - bool Shutdown(void) override; + bool Initialize() override; + bool Shutdown() override; bool ValidateIsMi(const CMIUtilString &vTextLine, bool &vwbYesValid, bool &vwbCmdNotInCmdFactor, SMICmdData &rwCmdData); // Methods: private: - /* ctor */ CMICmdInterpreter(void); + /* ctor */ CMICmdInterpreter(); /* ctor */ CMICmdInterpreter(const CMICmdInterpreter &); void operator=(const CMICmdInterpreter &); @@ -55,7 +52,7 @@ class CMICmdInterpreter : public CMICmnBase, public MI::ISingleton<CMICmdInterpr // Overridden: private: // From CMICmnBase - /* dtor */ ~CMICmdInterpreter(void) override; + /* dtor */ ~CMICmdInterpreter() override; // Attributes: private: |