diff options
author | Tom Tromey <tom@tromey.com> | 2022-04-30 08:02:36 -0600 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2022-05-06 12:03:34 -0600 |
commit | 9efa3c7fa3654c91d638fc9705ecd61c465c8000 (patch) | |
tree | 5997afda793aabda41bd20d0af10a53f8805de5a /gdb/breakpoint.h | |
parent | 04d0163c3ff280a2ec7d4e06594da750ef8f96d5 (diff) | |
download | gdb-9efa3c7fa3654c91d638fc9705ecd61c465c8000.zip gdb-9efa3c7fa3654c91d638fc9705ecd61c465c8000.tar.gz gdb-9efa3c7fa3654c91d638fc9705ecd61c465c8000.tar.bz2 |
Remove breakpoint::ops
The breakpoint::ops field is set but never used. This removes it.
Diffstat (limited to 'gdb/breakpoint.h')
-rw-r--r-- | gdb/breakpoint.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/gdb/breakpoint.h b/gdb/breakpoint.h index 7d4e874..b0ca4e9 100644 --- a/gdb/breakpoint.h +++ b/gdb/breakpoint.h @@ -736,9 +736,6 @@ struct breakpoint /* Return a range of this breakpoint's locations. */ bp_location_range locations (); - /* Methods associated with this breakpoint. */ - const breakpoint_ops *ops = NULL; - breakpoint *next = NULL; /* Type of breakpoint. */ bptype type = bp_none; |