diff options
Diffstat (limited to 'gdb/objfiles.h')
-rw-r--r-- | gdb/objfiles.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/objfiles.h b/gdb/objfiles.h index ae6a779..d6a7064 100644 --- a/gdb/objfiles.h +++ b/gdb/objfiles.h @@ -616,7 +616,7 @@ public: #define ALL_OBJFILE_FILETABS(objfile, cu, s) \ for (compunit_symtab *cu : objfile_compunits (objfile)) \ - ALL_COMPUNIT_FILETABS (cu, s) + for (symtab *s : compunit_filetabs (cu)) /* A range adapter that makes it possible to iterate over all compunits in one objfile. */ |