diff options
-rw-r--r-- | gdb/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/darwin-nat.h | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 8c98603..d700d6c 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2018-05-24 Pedro Alves <palves@redhat.com> + + * darwin-nat.h (darwin_nat_target::create_inferior): Mark with + override. + 2018-05-23 Tom Tromey <tom@tromey.com> * complaints.c (struct complaints): Remove. diff --git a/gdb/darwin-nat.h b/gdb/darwin-nat.h index 9d45bda..5965df0 100644 --- a/gdb/darwin-nat.h +++ b/gdb/darwin-nat.h @@ -27,7 +27,7 @@ class darwin_nat_target : public inf_child_target { void create_inferior (const char *exec_file, const std::string &allargs, - char **env, int from_tty); + char **env, int from_tty) override; void attach (const char *, int) override; |