mirror of
https://github.com/swaywm/sway.git
synced 2025-04-04 11:27:47 +03:00
list.c: Remove list_foreach
Most occurrences have been replaced by `free_flat_list` which has been moved from stringop.c to list.c. The rest have been replaced by for loops.
This commit is contained in:
parent
0c3f0dfd16
commit
19e831ed3d
11 changed files with 39 additions and 55 deletions
|
@ -45,10 +45,8 @@ struct loop *loop_create(void) {
|
|||
}
|
||||
|
||||
void loop_destroy(struct loop *loop) {
|
||||
list_foreach(loop->fd_events, free);
|
||||
list_foreach(loop->timers, free);
|
||||
list_free(loop->fd_events);
|
||||
list_free(loop->timers);
|
||||
free_flat_list(loop->fd_events);
|
||||
free_flat_list(loop->timers);
|
||||
free(loop->fds);
|
||||
free(loop);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue