Skip to content

Commit fafa560

Browse files
committed
fix code format
1 parent b45b5bc commit fafa560

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lldb/tools/lldb-dap/Handler/ExceptionInfoRequestHandler.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,8 @@ ExceptionInfoRequestHandler::Run(const ExceptionInfoArguments &args) const {
3737
response.exceptionId = "signal";
3838
break;
3939
case lldb::eStopReasonBreakpoint: {
40-
const ExceptionBreakpoint *exc_bp = dap.GetExceptionBPFromStopReason(thread);
40+
const ExceptionBreakpoint *exc_bp =
41+
dap.GetExceptionBPFromStopReason(thread);
4142
if (exc_bp) {
4243
response.exceptionId = exc_bp->GetFilter();
4344
response.description = exc_bp->GetLabel();

0 commit comments

Comments
 (0)