2
0
mirror of https://gitlab.isc.org/isc-projects/kea synced 2025-09-05 16:35:23 +00:00

[#3119] correct auto in for-loops

This commit is contained in:
Piotrek Zadroga
2023-10-20 14:00:23 +02:00
committed by Razvan Becheriu
parent 107be4be7a
commit ff39af2b08
8 changed files with 56 additions and 56 deletions

View File

@@ -4580,7 +4580,7 @@ MySqlLeaseMgr::upgradeExtendedInfo6(const LeasePageSize& page_size) {
++pages;
start_addr = leases.back()->addr_;
for (auto lease : leases) {
for (const auto& lease : leases) {
try {
bool modified = upgradeLease6ExtendedInfo(lease, check);
if (modified) {