Fix clang-tidy modernize-use-auto warnings

This commit is contained in:
Eduardo Almeida
2023-09-18 00:36:46 +01:00
parent df4dd4a99d
commit 1f438ce6f4
512 changed files with 3616 additions and 5523 deletions

View File

@@ -350,9 +350,7 @@ main(int argc, char* argv[])
}
}
for (std::vector<std::string>::const_iterator ploc = pcapLocationVec.begin();
ploc != pcapLocationVec.end();
++ploc)
for (auto ploc = pcapLocationVec.begin(); ploc != pcapLocationVec.end(); ++ploc)
{
NS_LOG_INFO("PCAP capture at: <" + *ploc + ">");
}