aboutsummaryrefslogtreecommitdiff
path: root/gdb/fbsd-nat.h
diff options
context:
space:
mode:
authorSimon Marchi <simon.marchi@ericsson.com>2018-06-27 10:52:57 -0400
committerSimon Marchi <simon.marchi@ericsson.com>2018-06-27 10:53:29 -0400
commitbd583225a52f920f71e417ef87092d25553dc85e (patch)
tree452aa00ee1ec7c9c5a8fbc98a7ef647f064b8175 /gdb/fbsd-nat.h
parente11078da44268a4813ed81a27853143af86c3e24 (diff)
downloadgdb-bd583225a52f920f71e417ef87092d25553dc85e.zip
gdb-bd583225a52f920f71e417ef87092d25553dc85e.tar.gz
gdb-bd583225a52f920f71e417ef87092d25553dc85e.tar.bz2
Add overrides, fix FreeBSD build
Fix this: CXX fbsd-nat.o In file included from fbsd-nat.c:44: ./fbsd-nat.h:40:7: error: 'find_memory_regions' overrides a member function but is not marked 'override' [-Werror,-Winconsistent-missing-override] int find_memory_regions (find_memory_region_ftype func, void *data); ^ ./target.h:702:17: note: overridden virtual function is here virtual int find_memory_regions (find_memory_region_ftype func, void *data) ^ In file included from fbsd-nat.c:44: ./fbsd-nat.h:42:8: error: 'info_proc' overrides a member function but is not marked 'override' [-Werror,-Winconsistent-missing-override] bool info_proc (const char *, enum info_proc_what); ^ ./target.h:950:18: note: overridden virtual function is here virtual bool info_proc (const char *, enum info_proc_what); ^ gdb/ChangeLog: * fbsd-nat.h (class fbsd_nat_target) <find_memory_regions>: Add override. <info_proc>: Likewise.
Diffstat (limited to 'gdb/fbsd-nat.h')
-rw-r--r--gdb/fbsd-nat.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/fbsd-nat.h b/gdb/fbsd-nat.h
index 8c90dd0..3e34600 100644
--- a/gdb/fbsd-nat.h
+++ b/gdb/fbsd-nat.h
@@ -37,9 +37,9 @@ class fbsd_nat_target : public inf_ptrace_target
public:
char *pid_to_exec_file (int pid) override;
- int find_memory_regions (find_memory_region_ftype func, void *data);
+ int find_memory_regions (find_memory_region_ftype func, void *data) override;
- bool info_proc (const char *, enum info_proc_what);
+ bool info_proc (const char *, enum info_proc_what) override;
#ifdef KERN_PROC_AUXV
enum target_xfer_status xfer_partial (enum target_object object,