diff options
Diffstat (limited to 'tools/lldb-mi/MICmnLog.h')
-rw-r--r-- | tools/lldb-mi/MICmnLog.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/tools/lldb-mi/MICmnLog.h b/tools/lldb-mi/MICmnLog.h index 30505359d749..f0ae534e840b 100644 --- a/tools/lldb-mi/MICmnLog.h +++ b/tools/lldb-mi/MICmnLog.h @@ -20,7 +20,7 @@ //++ ============================================================================ // Details: MI common code implementation class. Handle application trace // activity logging. Medium objects derived from the Medium abstract -/// class are registered with this loggor. The function Write is called +/// class are registered with this logger. The function Write is called // by a client callee to log information. That information is given to // registered relevant mediums. The medium file is registered during // *this logs initialization so it will always have a file log for the @@ -37,14 +37,14 @@ class CMICmnLog : public MI::ISingleton<CMICmnLog> // Enumeration: public: //++ - // Description: Data given to the Logger can be of serveral types. The Logger can be + // Description: Data given to the Logger can be of several types. The Logger can be // set at levels of verbosity. Can determine how data is sent to one or // mediums. //-- enum ELogVerbosity { // Descriptions of what 'may' occur, depends ultimately on the medium itself. See the medium. eLogVerbosity_FnTrace = 0x00000004, // Debug function stack call tracing - eLogVerbosity_DbgOp = 0x00000008, // Send a string to the debugguer for display (not implemented) + eLogVerbosity_DbgOp = 0x00000008, // Send a string to the debugger for display (not implemented) eLogVerbosity_ClientMsg = 0x00000010, // A client using MI can insert messages into the log (not implemented) eLogVerbosity_Log = 0x00000020 // Send to only the Log file. }; @@ -93,8 +93,8 @@ class CMICmnLog : public MI::ISingleton<CMICmnLog> // Overridden: public: // From MI::ISingleton - virtual bool Initialize(void); - virtual bool Shutdown(void); + bool Initialize(void) override; + bool Shutdown(void) override; // Methods: private: @@ -105,7 +105,7 @@ class CMICmnLog : public MI::ISingleton<CMICmnLog> // Overridden: private: // From CMICmnBase - /* dtor */ virtual ~CMICmnLog(void); + /* dtor */ ~CMICmnLog(void) override; // Typedef: private: |