Skip to content

Commit e4cde5d

Browse files
committed
[lldb] Adjust for signature difference
HandleProcessStateChangedEvent takes two booleans as in/out parameters.
1 parent 2f355ca commit e4cde5d

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

lldb/source/Target/Platform.cpp

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1839,8 +1839,10 @@ lldb::ProcessSP Platform::DoConnectProcess(llvm::StringRef connect_url,
18391839
nullptr);
18401840
process_sp->RestoreProcessEvents();
18411841
bool pop_process_io_handler = false;
1842+
bool pop_command_interpreter = false;
18421843
Process::HandleProcessStateChangedEvent(event_sp, stream,
1843-
pop_process_io_handler);
1844+
pop_process_io_handler,
1845+
pop_command_interpreter);
18441846
}
18451847

18461848
return process_sp;

0 commit comments

Comments
 (0)