diff options
Diffstat (limited to 'gdb/breakpoint.h')
-rw-r--r-- | gdb/breakpoint.h | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/gdb/breakpoint.h b/gdb/breakpoint.h index 21dd8d5..af69af6 100644 --- a/gdb/breakpoint.h +++ b/gdb/breakpoint.h @@ -620,14 +620,8 @@ using bp_location_range = next_range<bp_location>; struct breakpoint { - breakpoint (struct gdbarch *gdbarch_, enum bptype bptype) - : type (bptype), - gdbarch (gdbarch_), - language (current_language->la_language), - input_radix (::input_radix), - related_breakpoint (this) - { - } + breakpoint (struct gdbarch *gdbarch_, enum bptype bptype, + bool temp = true, const char *cond_string = nullptr); DISABLE_COPY_AND_ASSIGN (breakpoint); |