summaryrefslogtreecommitdiff
path: root/tools/lldb-mi/MICmnLog.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tools/lldb-mi/MICmnLog.cpp')
-rw-r--r--tools/lldb-mi/MICmnLog.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/tools/lldb-mi/MICmnLog.cpp b/tools/lldb-mi/MICmnLog.cpp
index a88ba6b5782a..e85ddba316a4 100644
--- a/tools/lldb-mi/MICmnLog.cpp
+++ b/tools/lldb-mi/MICmnLog.cpp
@@ -21,7 +21,7 @@
// Return: None.
// Throws: None.
//--
-CMICmnLog::CMICmnLog(void)
+CMICmnLog::CMICmnLog()
: m_bEnabled(false)
, m_bInitializingATM(false)
{
@@ -35,7 +35,7 @@ CMICmnLog::CMICmnLog(void)
// Return: None.
// Throws: None.
//--
-CMICmnLog::~CMICmnLog(void)
+CMICmnLog::~CMICmnLog()
{
Shutdown();
}
@@ -49,7 +49,7 @@ CMICmnLog::~CMICmnLog(void)
// Throws: None.
//--
bool
-CMICmnLog::Initialize(void)
+CMICmnLog::Initialize()
{
m_clientUsageRefCnt++;
@@ -102,7 +102,7 @@ CMICmnLog::Initialize(void)
// Throws: None.
//--
bool
-CMICmnLog::Shutdown(void)
+CMICmnLog::Shutdown()
{
if (--m_clientUsageRefCnt > 0)
return MIstatus::success;
@@ -144,7 +144,7 @@ CMICmnLog::SetEnabled(const bool vbYes)
// Throws: None.
//--
bool
-CMICmnLog::GetEnabled(void) const
+CMICmnLog::GetEnabled() const
{
return m_bEnabled;
}
@@ -158,7 +158,7 @@ CMICmnLog::GetEnabled(void) const
// Throws: None.
//--
bool
-CMICmnLog::UnregisterMediumAll(void)
+CMICmnLog::UnregisterMediumAll()
{
MapMediumToName_t::const_iterator it = m_mapMediumToName.begin();
for (; it != m_mapMediumToName.end(); it++)
@@ -325,7 +325,7 @@ CMICmnLog::WriteLog(const CMIUtilString &vData)
// Throws: None.
//--
const CMIUtilString &
-CMICmnLog::GetErrorDescription(void) const
+CMICmnLog::GetErrorDescription() const
{
return m_strMILastErrorDescription;
}
@@ -351,7 +351,7 @@ CMICmnLog::SetErrorDescription(const CMIUtilString &vrTxt) const
// Throws: None.
//--
void
-CMICmnLog::ClrErrorDescription(void) const
+CMICmnLog::ClrErrorDescription() const
{
m_strMILastErrorDescription = CMIUtilString("");
}