Fix tidy one more time

This commit is contained in:
alesapin 2021-04-03 17:57:03 +03:00
parent 0204f5dd35
commit 1906c77884

View File

@ -90,7 +90,7 @@ void MergeTreeDeduplicationLog::load()
for (const auto & p : fs::directory_iterator(logs_dir))
{
auto path = p.path();
const auto & path = p.path();
auto log_number = getLogNumber(path);
existing_logs[log_number] = {path, 0};
}