Fix clang-tidy modernize-use-auto warnings
This commit is contained in:
@@ -161,7 +161,7 @@ PrintGnuplottableBuildingListToFile(std::string filename)
|
||||
return;
|
||||
}
|
||||
uint32_t index = 0;
|
||||
for (BuildingList::Iterator it = BuildingList::Begin(); it != BuildingList::End(); ++it)
|
||||
for (auto it = BuildingList::Begin(); it != BuildingList::End(); ++it)
|
||||
{
|
||||
++index;
|
||||
Box box = (*it)->GetBoundaries();
|
||||
|
||||
Reference in New Issue
Block a user