mirror of
https://github.com/intel/llvm.git
synced 2026-01-24 08:30:34 +08:00
Fix a minor error where I forgot to declare a variable.
llvm-svn: 223393
This commit is contained in:
@@ -164,7 +164,8 @@ void
|
||||
DebuggerThread::DebugLoop()
|
||||
{
|
||||
DEBUG_EVENT dbe = {0};
|
||||
while (WaitForDebugEvent(&dbe, INFINITE))
|
||||
bool should_debug = true;
|
||||
while (should_debug && WaitForDebugEvent(&dbe, INFINITE))
|
||||
{
|
||||
DWORD continue_status = DBG_CONTINUE;
|
||||
switch (dbe.dwDebugEventCode)
|
||||
|
||||
Reference in New Issue
Block a user