diff options
Diffstat (limited to 'gdb/objfiles.h')
-rw-r--r-- | gdb/objfiles.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/gdb/objfiles.h b/gdb/objfiles.h index 8d7a3c3..512869f 100644 --- a/gdb/objfiles.h +++ b/gdb/objfiles.h @@ -586,11 +586,6 @@ public: ALL_OBJFILES_SAFE works even if you delete the objfile during the traversal. */ -/* Traverse all object files in program space SS. */ - -#define ALL_PSPACE_OBJFILES(ss, obj) \ - for ((obj) = ss->objfiles; (obj) != NULL; (obj) = (obj)->next) - #define ALL_OBJFILES(obj) \ for ((obj) = current_program_space->objfiles; \ (obj) != NULL; \ |