diff options
Diffstat (limited to 'tools/lldb-mi/MICmdCmdGdbThread.cpp')
-rw-r--r-- | tools/lldb-mi/MICmdCmdGdbThread.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/tools/lldb-mi/MICmdCmdGdbThread.cpp b/tools/lldb-mi/MICmdCmdGdbThread.cpp index 40f2eeccb6b4..5f71b0547609 100644 --- a/tools/lldb-mi/MICmdCmdGdbThread.cpp +++ b/tools/lldb-mi/MICmdCmdGdbThread.cpp @@ -21,7 +21,7 @@ // Return: None. // Throws: None. //-- -CMICmdCmdGdbThread::CMICmdCmdGdbThread(void) +CMICmdCmdGdbThread::CMICmdCmdGdbThread() { // Command factory matches this name with that received from the stdin stream m_strMiCmd = "thread"; @@ -37,7 +37,7 @@ CMICmdCmdGdbThread::CMICmdCmdGdbThread(void) // Return: None. // Throws: None. //-- -CMICmdCmdGdbThread::~CMICmdCmdGdbThread(void) +CMICmdCmdGdbThread::~CMICmdCmdGdbThread() { } @@ -51,7 +51,7 @@ CMICmdCmdGdbThread::~CMICmdCmdGdbThread(void) // Throws: None. //-- bool -CMICmdCmdGdbThread::Execute(void) +CMICmdCmdGdbThread::Execute() { // Do nothing @@ -68,7 +68,7 @@ CMICmdCmdGdbThread::Execute(void) // Throws: None. //-- bool -CMICmdCmdGdbThread::Acknowledge(void) +CMICmdCmdGdbThread::Acknowledge() { const CMICmnMIValueConst miValueConst(MIRSRC(IDS_WORD_NOT_IMPLEMENTED)); const CMICmnMIValueResult miValueResult("msg", miValueConst); @@ -87,7 +87,7 @@ CMICmdCmdGdbThread::Acknowledge(void) // Throws: None. //-- CMICmdBase * -CMICmdCmdGdbThread::CreateSelf(void) +CMICmdCmdGdbThread::CreateSelf() { return new CMICmdCmdGdbThread(); } |