Codechange: Replace linkgraph related FOR_ALL with range-based for loops

This commit is contained in:
glx
2019-12-16 19:28:46 +01:00
committed by Niels Martin Hansen
parent 00c2a98cf3
commit 09fa39c5b5
5 changed files with 8 additions and 19 deletions

View File

@@ -107,10 +107,8 @@ void LinkGraphSchedule::SpawnAll()
*/
void LinkGraphSchedule::ShiftDates(int interval)
{
LinkGraph *lg;
FOR_ALL_LINK_GRAPHS(lg) lg->ShiftDates(interval);
LinkGraphJob *lgj;
FOR_ALL_LINK_GRAPH_JOBS(lgj) lgj->ShiftJoinDate(interval);
for (LinkGraph *lg : LinkGraph::Iterate()) lg->ShiftDates(interval);
for (LinkGraphJob *lgj : LinkGraphJob::Iterate()) lgj->ShiftJoinDate(interval);
}
/**