[Lldb-commits] [lldb] [lldb] Synchronize Debugger's stdout and stderr at the StreamFile level (PR #126630)
Alex Langford via lldb-commits
lldb-commits at lists.llvm.org
Mon Feb 10 16:56:00 PST 2025
================
@@ -7574,7 +7574,9 @@ IOHandlerCursesGUI::IOHandlerCursesGUI(Debugger &debugger)
void IOHandlerCursesGUI::Activate() {
IOHandler::Activate();
if (!m_app_ap) {
- m_app_ap = std::make_unique<Application>(GetInputFILE(), GetOutputFILE());
+ m_app_ap = std::make_unique<Application>(
----------------
bulbazord wrote:
nit: while you're here, `m_app_ap` -> `m_app_up`? auto pointers are dead, long live auto pointers!
https://github.com/llvm/llvm-project/pull/126630
More information about the lldb-commits
mailing list