Remove breakpoint_ops from init_catchpoint
init_catchpoint is only ever passed a single breakpoint_ops pointer, so remove the parameter.
This commit is contained in:
parent
a48ddc0d6a
commit
b3316ff153
8 changed files with 11 additions and 17 deletions
|
@ -317,7 +317,7 @@ create_signal_catchpoint (int tempflag, std::vector<gdb_signal> &&filter,
|
|||
struct gdbarch *gdbarch = get_current_arch ();
|
||||
|
||||
std::unique_ptr<signal_catchpoint> c (new signal_catchpoint ());
|
||||
init_catchpoint (c.get (), gdbarch, tempflag, NULL, &vtable_breakpoint_ops);
|
||||
init_catchpoint (c.get (), gdbarch, tempflag, nullptr);
|
||||
c->signals_to_be_caught = std::move (filter);
|
||||
c->catch_all = catch_all;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue