diff options
author | Tom Tromey <tom@tromey.com> | 2018-11-23 17:09:34 -0700 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2019-01-09 18:28:14 -0700 |
commit | cac85af2467c9bac326b397b150274d95d2916a5 (patch) | |
tree | 1e9c3722cd2e1592218f8dc5c7e31a154d848a3e /gdb/common | |
parent | aed57c537116ae91f553ac835b3f96d1f87b3bb0 (diff) | |
download | gdb-cac85af2467c9bac326b397b150274d95d2916a5.zip gdb-cac85af2467c9bac326b397b150274d95d2916a5.tar.gz gdb-cac85af2467c9bac326b397b150274d95d2916a5.tar.bz2 |
Remove ALL_OBJFILES_SAFE
This removes the ALL_OBJFILES_SAFE macro, replacing the uses with
ranged for loops.
gdb/ChangeLog
2019-01-09 Tom Tromey <tom@tromey.com>
* common/next-iterator.h (next_adapter): Add Iterator template
parameter.
* objfiles.h (ALL_OBJFILES_SAFE): Remove.
(class all_objfiles_safe): New.
* jit.c (jit_inferior_exit_hook): Use all_objfiles_safe.
* objfiles.c (put_objfile_before): Update comment.
(add_separate_debug_objfile): Likewise.
(free_all_objfiles): Use all_objfiles_safe.
(objfile_purge_solibs): Likewise.
Diffstat (limited to 'gdb/common')
-rw-r--r-- | gdb/common/next-iterator.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/common/next-iterator.h b/gdb/common/next-iterator.h index 588ebfd..b61b253 100644 --- a/gdb/common/next-iterator.h +++ b/gdb/common/next-iterator.h @@ -72,7 +72,7 @@ private: /* A range adapter that allows iterating over a linked list. */ -template<typename T> +template<typename T, typename Iterator = next_iterator<T>> class next_adapter { public: @@ -82,7 +82,7 @@ public: { } - using iterator = next_iterator<T>; + using iterator = Iterator; iterator begin () const { |