diff options
Diffstat (limited to 'gdb/break-catch-throw.c')
-rw-r--r-- | gdb/break-catch-throw.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gdb/break-catch-throw.c b/gdb/break-catch-throw.c index f9bcc8d..4b79e0f 100644 --- a/gdb/break-catch-throw.c +++ b/gdb/break-catch-throw.c @@ -365,8 +365,7 @@ handle_gnu_v3_exceptions (int tempflag, std::string &&except_rx, std::unique_ptr<exception_catchpoint> cp (new exception_catchpoint ()); - init_catchpoint (cp.get (), get_current_arch (), tempflag, cond_string, - &vtable_breakpoint_ops); + init_catchpoint (cp.get (), get_current_arch (), tempflag, cond_string); cp->kind = ex_event; cp->exception_rx = std::move (except_rx); cp->pattern = std::move (pattern); |