diff options
author | Tankut Baris Aktemur <tankut.baris.aktemur@intel.com> | 2020-10-19 17:17:30 +0200 |
---|---|---|
committer | Tankut Baris Aktemur <tankut.baris.aktemur@intel.com> | 2020-10-19 17:41:51 +0200 |
commit | 267037210c9b58b310ab9946e6ab401f8562647f (patch) | |
tree | 5b4cfae7ec1380c8806676fc9fa6a00cfc763057 | |
parent | 61c26be85f0e09a208fa46ee839c74081c7d8124 (diff) | |
download | binutils-267037210c9b58b310ab9946e6ab401f8562647f.zip binutils-267037210c9b58b310ab9946e6ab401f8562647f.tar.gz binutils-267037210c9b58b310ab9946e6ab401f8562647f.tar.bz2 |
gdb/frame: remove an unused type alias
Tested by rebuilding.
gdb/ChangeLog:
2020-10-19 Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
* frame.c: Remove the unused 'uinteger_option_def' type alias.
-rw-r--r-- | gdb/ChangeLog | 4 | ||||
-rw-r--r-- | gdb/frame.c | 2 |
2 files changed, 4 insertions, 2 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 0a81dac..5bfe185 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +2020-10-19 Tankut Baris Aktemur <tankut.baris.aktemur@intel.com> + + * frame.c: Remove the unused 'uinteger_option_def' type alias. + 2020-10-14 Mihails Strasuns <mihails.strasuns@intel.com> * breakpoint.c (handle_jit_event): Add an argument, change how diff --git a/gdb/frame.c b/gdb/frame.c index b4af734..6bfa31e 100644 --- a/gdb/frame.c +++ b/gdb/frame.c @@ -2995,8 +2995,6 @@ static struct cmd_list_element *show_backtrace_cmdlist; using boolean_option_def = gdb::option::boolean_option_def<set_backtrace_options>; -using uinteger_option_def - = gdb::option::uinteger_option_def<set_backtrace_options>; const gdb::option::option_def set_backtrace_option_defs[] = { |