diff options
author | Simon Marchi <simon.marchi@polymtl.ca> | 2022-01-31 15:23:32 -0500 |
---|---|---|
committer | Simon Marchi <simon.marchi@polymtl.ca> | 2022-03-06 11:32:25 -0500 |
commit | 7055fa96fcadf77482876b42393fe43b48fdfe16 (patch) | |
tree | 78e9da68af2dfbfdf08c289693dc84dd5aac0a66 /gdb/break-catch-throw.c | |
parent | 7a1550fcecb8db0fc6db0d59b18d3ca5ac6f4d39 (diff) | |
download | gdb-7055fa96fcadf77482876b42393fe43b48fdfe16.zip gdb-7055fa96fcadf77482876b42393fe43b48fdfe16.tar.gz gdb-7055fa96fcadf77482876b42393fe43b48fdfe16.tar.bz2 |
gdb: remove internalvar_funcs::destroy
No kind of internal var uses it remove it. This makes the transition to
using a variant easier, since we don't need to think about where this
should be called (in a destructor or not), if it can throw, etc.
Change-Id: Iebbc867d1ce6716480450d9790410d6684cbe4dd
Diffstat (limited to 'gdb/break-catch-throw.c')
-rw-r--r-- | gdb/break-catch-throw.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/gdb/break-catch-throw.c b/gdb/break-catch-throw.c index d34e5f9..fcd644e 100644 --- a/gdb/break-catch-throw.c +++ b/gdb/break-catch-throw.c @@ -510,7 +510,6 @@ static const struct internalvar_funcs exception_funcs = { compute_exception, NULL, - NULL }; |