Codechange: Ensure space between for/if and (.

This commit is contained in:
Peter Nelson
2023-11-09 19:23:26 +00:00
committed by Peter Nelson
parent d4008850e3
commit 938c8339d2
3 changed files with 4 additions and 4 deletions

View File

@@ -278,7 +278,7 @@ private:
this->title = lt->title;
std::vector<const LeagueTableElement *> elements;
for(LeagueTableElement *lte : LeagueTableElement::Iterate()) {
for (LeagueTableElement *lte : LeagueTableElement::Iterate()) {
if (lte->table == this->table) {
elements.push_back(lte);
}