helper: Removed eclipsing loop variable

This commit is contained in:
Paul Beckingham 2016-04-22 01:09:15 -04:00
parent 31d2ebe488
commit e814aa7e35

View file

@ -521,11 +521,11 @@ std::vector <Daterange> combineHolidaysAndExclusions (
if (exclusion.tokens ()[1] == "day") if (exclusion.tokens ()[1] == "day")
{ {
if (exclusion.additive ()) if (exclusion.additive ())
for (auto& range : exclusion.ranges (range)) for (auto& r : exclusion.ranges (range))
daysOn.push_back (range); daysOn.push_back (r);
else else
for (auto& range : exclusion.ranges (range)) for (auto& r : exclusion.ranges (range))
daysOff.push_back (range); daysOff.push_back (r);
} }
} }