diff options
author | Simon Marchi <simon.marchi@efficios.com> | 2019-11-26 12:12:01 -0500 |
---|---|---|
committer | Simon Marchi <simon.marchi@efficios.com> | 2019-11-26 14:29:20 -0500 |
commit | b62f6f5435efa0bedf5a363ee09552285b1f1372 (patch) | |
tree | 20a57747f700e4abf97d034201dda193107fe195 /gdb/dictionary.h | |
parent | cb8c24b66178a2b7efcfa396ac54fb7252493d9c (diff) | |
download | gdb-b62f6f5435efa0bedf5a363ee09552285b1f1372.zip gdb-b62f6f5435efa0bedf5a363ee09552285b1f1372.tar.gz gdb-b62f6f5435efa0bedf5a363ee09552285b1f1372.tar.bz2 |
Remove dict_empty/mdict_empty
These functions are not used in the code base, remove them.
gdb/ChangeLog:
* dictionary.c (dict_empty, mdict_empty): Remove.
* dictionary.c (mdict_empty): Remove.
Change-Id: I4c1b08c730f6790b2f3d28b680607618e3c08e48
Diffstat (limited to 'gdb/dictionary.h')
-rw-r--r-- | gdb/dictionary.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/gdb/dictionary.h b/gdb/dictionary.h index e6481cd..9a7739b 100644 --- a/gdb/dictionary.h +++ b/gdb/dictionary.h @@ -93,10 +93,6 @@ extern void mdict_add_symbol (struct multidictionary *mdict, extern void mdict_add_pending (struct multidictionary *mdict, const struct pending *symbol_list); -/* Is the multidictionary empty? */ - -extern int mdict_empty (struct multidictionary *mdict); - /* A type containing data that is used when iterating over all symbols in a dictionary. Don't ever look at its innards; this type would be opaque if we didn't need to be able to allocate it on the |