Remove "struct" keyword in range-based for loops
[deliverable/binutils-gdb.git] / gdb / dbxread.c
index c5acae9583f09ebe1c11eee9a743eda0f12e7182..1b524ec0e227f49d6bfa2ba16bbbc5829b8f60d2 100644 (file)
@@ -864,7 +864,7 @@ dbx_next_symbol_text (struct objfile *objfile)
 static struct partial_symtab *
 find_corresponding_bincl_psymtab (const char *name, int instance)
 {
-  for (struct header_file_location &bincl : *bincl_list)
+  for (const header_file_location &bincl : *bincl_list)
     if (bincl.instance == instance
        && strcmp (name, bincl.name) == 0)
       return bincl.pst;
This page took 0.027225 seconds and 4 git commands to generate.