Closed vwellsTT closed 3 days ago
Nitpick fix PR to address minor issues discussed in previous PR. Noted that this file has some for (auto X loops that should really be for (const auto& X to avoid unneeded copying. Vectors in the lambda have same issue too.
for (auto X
for (const auto& X
Nitpick fix PR to address minor issues discussed in previous PR. Noted that this file has some
for (auto X
loops that should really befor (const auto& X
to avoid unneeded copying. Vectors in the lambda have same issue too.