Skip to content

Commit 1051020

Browse files
committed
Applying formatting to lldb-dap.cpp.
1 parent b63d2ce commit 1051020

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

lldb/tools/lldb-dap/lldb-dap.cpp

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@
1313
#include "RunInTerminal.h"
1414
#include "Watchpoint.h"
1515
#include "lldb/API/SBDeclaration.h"
16+
#include "lldb/API/SBEvent.h"
1617
#include "lldb/API/SBInstruction.h"
1718
#include "lldb/API/SBListener.h"
1819
#include "lldb/API/SBMemoryRegionInfo.h"
1920
#include "lldb/API/SBStream.h"
20-
#include "lldb/API/SBEvent.h"
2121
#include "lldb/API/SBStringList.h"
2222
#include "lldb/Host/Config.h"
2323
#include "llvm/ADT/ArrayRef.h"
@@ -1881,8 +1881,10 @@ void request_initialize(DAP &dap, const llvm::json::Object &request) {
18811881
// Do not source init files until in/out/err are configured.
18821882
dap.debugger = lldb::SBDebugger::Create(false);
18831883
dap.debugger.SetInputFile(dap.in);
1884-
dap.debugger.SetOutputFile(lldb::SBFile(dap.pout.GetWriteFileDescriptor(), "w", false));
1885-
dap.debugger.SetErrorFile(lldb::SBFile(dap.perr.GetWriteFileDescriptor(), "w", false));
1884+
dap.debugger.SetOutputFile(
1885+
lldb::SBFile(dap.pout.GetWriteFileDescriptor(), "w", false));
1886+
dap.debugger.SetErrorFile(
1887+
lldb::SBFile(dap.perr.GetWriteFileDescriptor(), "w", false));
18861888

18871889
auto interp = dap.debugger.GetCommandInterpreter();
18881890

0 commit comments

Comments
 (0)