diff options
Diffstat (limited to 'tools/lldb-mi/MICmdArgValOptionShort.h')
-rw-r--r-- | tools/lldb-mi/MICmdArgValOptionShort.h | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/tools/lldb-mi/MICmdArgValOptionShort.h b/tools/lldb-mi/MICmdArgValOptionShort.h index 9157b37bb8dc7..0f1c2fc12c3dd 100644 --- a/tools/lldb-mi/MICmdArgValOptionShort.h +++ b/tools/lldb-mi/MICmdArgValOptionShort.h @@ -26,15 +26,12 @@ class CMIUtilString; // created to hold each of those option's values belong to *this argument // object and so are deleted when *this object goes out of scope. // Based on the Interpreter pattern. -// Gotchas: None. -// Authors: Illya Rudkin 16/04/2014. -// Changes: None. //-- class CMICmdArgValOptionShort : public CMICmdArgValOptionLong { // Methods: public: - /* ctor */ CMICmdArgValOptionShort(void); + /* ctor */ CMICmdArgValOptionShort(); /* ctor */ CMICmdArgValOptionShort(const CMIUtilString &vrArgName, const bool vbMandatory, const bool vbHandleByCmd); /* ctor */ CMICmdArgValOptionShort(const CMIUtilString &vrArgName, const bool vbMandatory, const bool vbHandleByCmd, const ArgValType_e veType, const MIuint vnExpectingNOptions); @@ -44,7 +41,7 @@ class CMICmdArgValOptionShort : public CMICmdArgValOptionLong // Overridden: public: // From CMICmdArgValBase - /* dtor */ ~CMICmdArgValOptionShort(void) override; + /* dtor */ ~CMICmdArgValOptionShort() override; // Overridden: private: |