clang-tidy fix

This commit is contained in:
Alexander Gololobov 2024-05-30 21:22:07 +02:00 committed by GitHub
parent 3da65bb0a2
commit dd5c151d86
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -267,7 +267,7 @@ public:
if (traverse_children)
{
/// Schedule traversal of each child
for (auto & child : response.names)
for (const auto & child : response.names)
{
auto task = std::make_shared<TraversalTask>(path / child, this->shared_from_this());
ctx.new_tasks.push_back(task);