This is the mail archive of the
gdb-patches@sourceware.org
mailing list for the GDB project.
[PATCH 00/20] Remove cleanups
- From: Tom Tromey <tom at tromey dot com>
- To: gdb-patches at sourceware dot org
- Date: Wed, 13 Feb 2019 14:29:07 -0700
- Subject: [PATCH 00/20] Remove cleanups
This series removes the remaining uses of make_cleanup from the tree,
then removes make_cleanup and some related functions (but note that
final cleanups remain).
Then, it removes the TRY/CATCH macros in favor of ordinary C++ code.
Finally, it cleans up a few spots that currently use TRY/CATCH but
that are more succinctly written using SCOPE_EXIT or RAII.
Regression tested by the buildbot.
Tom