Remove "struct" keyword in range-based for loops
[deliverable/binutils-gdb.git] / gdb / thread.c
index a09d7e0ba086e224645d89adf0ba034522dc4d6a..f5a29f5cc142cf82a90c5dae296e9e5fe97598e4 100644 (file)
@@ -783,7 +783,7 @@ value_in_thread_stack_temporaries (struct value *val, ptid_t ptid)
   struct thread_info *tp = find_thread_ptid (ptid);
 
   gdb_assert (tp != NULL && tp->stack_temporaries_enabled);
-  for (struct value *v : tp->stack_temporaries)
+  for (value *v : tp->stack_temporaries)
     if (v == val)
       return true;
 
This page took 0.024997 seconds and 4 git commands to generate.