diff options
author | Dimitry Andric <dim@FreeBSD.org> | 2015-12-30 11:55:28 +0000 |
---|---|---|
committer | Dimitry Andric <dim@FreeBSD.org> | 2015-12-30 11:55:28 +0000 |
commit | e81d9d49145e432d917eea3a70d2ae74dcad1d89 (patch) | |
tree | 9ed5e1a91f242e2cb5911577356e487a55c01b78 /tools/lldb-mi/MIUtilDebug.cpp | |
parent | 85d8ef8f1f0e0e063a8571944302be2d2026f823 (diff) |
Notes
Diffstat (limited to 'tools/lldb-mi/MIUtilDebug.cpp')
-rw-r--r-- | tools/lldb-mi/MIUtilDebug.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/tools/lldb-mi/MIUtilDebug.cpp b/tools/lldb-mi/MIUtilDebug.cpp index f7d461bfcd28..d49aaa20a8f9 100644 --- a/tools/lldb-mi/MIUtilDebug.cpp +++ b/tools/lldb-mi/MIUtilDebug.cpp @@ -24,7 +24,7 @@ // Return: None. // Throws: None. //-- -CMIUtilDebug::CMIUtilDebug(void) +CMIUtilDebug::CMIUtilDebug() { } @@ -35,7 +35,7 @@ CMIUtilDebug::CMIUtilDebug(void) // Return: None. // Throws: None. //-- -CMIUtilDebug::~CMIUtilDebug(void) +CMIUtilDebug::~CMIUtilDebug() { } @@ -48,7 +48,7 @@ CMIUtilDebug::~CMIUtilDebug(void) // Throws: None. //-- void -CMIUtilDebug::ShowDlgWaitForDbgAttach(void) +CMIUtilDebug::ShowDlgWaitForDbgAttach() { const CMIUtilString strCaption(CMIDriver::Instance().GetAppNameShort()); #ifdef _WIN32 @@ -71,7 +71,7 @@ CMIUtilDebug::ShowDlgWaitForDbgAttach(void) // Throws: None. //-- void -CMIUtilDebug::WaitForDbgAttachInfinteLoop(void) +CMIUtilDebug::WaitForDbgAttachInfinteLoop() { MIuint i = 0; while (i == 0) @@ -110,7 +110,7 @@ CMIUtilDebugFnTrace::CMIUtilDebugFnTrace(const CMIUtilString &vFnName) // Return: None. // Throws: None. //-- -CMIUtilDebugFnTrace::~CMIUtilDebugFnTrace(void) +CMIUtilDebugFnTrace::~CMIUtilDebugFnTrace() { const CMIUtilString txt(CMIUtilString::Format("%d<%s", ms_fnDepthCnt--, m_strFnName.c_str())); ms_rLog.Write(txt, CMICmnLog::eLogVerbosity_FnTrace); |