Revert "[clang-tidy] Replace C style casts with C++ ones"

This reverts commit 13e1bf7204.
This commit is contained in:
Paul Beckingham
2020-12-05 16:18:15 -05:00
parent 364b4ea8bd
commit c43a513158
14 changed files with 86 additions and 86 deletions

View File

@@ -99,7 +99,7 @@ void sort_projects (
{
std::map <std::string, int> allProjectsInt;
for (auto& p : allProjects)
allProjectsInt[p.first] = static_cast<int>(p.second);
allProjectsInt[p.first] = (int) p.second;
sort_projects (sorted, allProjectsInt);
}