Revert "[clang-tidy] Use new range based loops"

This reverts commit a468537c1b.
This commit is contained in:
Paul Beckingham 2020-12-05 16:18:15 -05:00
parent e3e158bf6a
commit 0a3a4d364d
4 changed files with 20 additions and 20 deletions

View file

@ -320,8 +320,8 @@ std::string ViewTask::render (std::vector <Task>& data, std::vector <int>& seque
if (obfuscate)
if (_columns[c]->type () == "string")
for (auto & line : cells[c])
line = obfuscateText (line);
for (unsigned int line = 0; line < cells[c].size (); ++line)
cells[c][line] = obfuscateText (cells[c][line]);
}
// Listing breaks are simply blank lines inserted when a column value