Skip to content

Commit 7af0265

Browse files
committed
Make breakpoint stop reason more accurate
1 parent be55209 commit 7af0265

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lldb/tools/lldb-dap/DAP.h

+3-3
Original file line numberDiff line numberDiff line change
@@ -125,21 +125,21 @@ struct Variables {
125125

126126
struct StartDebuggingRequestHandler : public lldb::SBCommandPluginInterface {
127127
DAP &dap;
128-
explicit StartDebuggingRequestHandler(DAP &d) : dap(d){};
128+
explicit StartDebuggingRequestHandler(DAP &d) : dap(d) {};
129129
bool DoExecute(lldb::SBDebugger debugger, char **command,
130130
lldb::SBCommandReturnObject &result) override;
131131
};
132132

133133
struct ReplModeRequestHandler : public lldb::SBCommandPluginInterface {
134134
DAP &dap;
135-
explicit ReplModeRequestHandler(DAP &d) : dap(d){};
135+
explicit ReplModeRequestHandler(DAP &d) : dap(d) {};
136136
bool DoExecute(lldb::SBDebugger debugger, char **command,
137137
lldb::SBCommandReturnObject &result) override;
138138
};
139139

140140
struct SendEventRequestHandler : public lldb::SBCommandPluginInterface {
141141
DAP &dap;
142-
explicit SendEventRequestHandler(DAP &d) : dap(d){};
142+
explicit SendEventRequestHandler(DAP &d) : dap(d) {};
143143
bool DoExecute(lldb::SBDebugger debugger, char **command,
144144
lldb::SBCommandReturnObject &result) override;
145145
};

0 commit comments

Comments
 (0)