mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-17 07:53:51 +08:00
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:
@ -182,8 +182,7 @@ create_fork_vfork_event_catchpoint (struct gdbarch *gdbarch,
|
||||
{
|
||||
std::unique_ptr<fork_catchpoint> c (new fork_catchpoint ());
|
||||
|
||||
init_catchpoint (c.get (), gdbarch, temp, cond_string,
|
||||
&vtable_breakpoint_ops);
|
||||
init_catchpoint (c.get (), gdbarch, temp, cond_string);
|
||||
c->is_vfork = is_vfork;
|
||||
c->forked_inferior_pid = null_ptid;
|
||||
|
||||
|
Reference in New Issue
Block a user