From a6faf851f49c7d50e92b16ff9d2e7c02790dd0f8 Mon Sep 17 00:00:00 2001 From: Jonas Devlieghere Date: Tue, 14 Jan 2020 22:27:00 -0800 Subject: [lldb/CommandInterpreter] Remove flag that's always true (NFC) The 'asynchronously' argument to both GetLLDBCommandsFromIOHandler and GetPythonCommandsFromIOHandler is true for all call sites. This commit simplifies the API by dropping it and giving the baton a default argument. --- lldb/source/Commands/CommandObjectBreakpointCommand.cpp | 1 - 1 file changed, 1 deletion(-) (limited to 'lldb/source/Commands/CommandObjectBreakpointCommand.cpp') diff --git a/lldb/source/Commands/CommandObjectBreakpointCommand.cpp b/lldb/source/Commands/CommandObjectBreakpointCommand.cpp index 551d0ac..bbd2ca5 100644 --- a/lldb/source/Commands/CommandObjectBreakpointCommand.cpp +++ b/lldb/source/Commands/CommandObjectBreakpointCommand.cpp @@ -256,7 +256,6 @@ are no syntax errors may indicate that a function was declared but never called. m_interpreter.GetLLDBCommandsFromIOHandler( "> ", // Prompt *this, // IOHandlerDelegate - true, // Run IOHandler in async mode &bp_options_vec); // Baton for the "io_handler" that will be passed back // into our IOHandlerDelegate functions } -- cgit v1.1