mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-07-07 20:06:36 +02:00
ColProject: Use of const
This commit is contained in:
parent
f2863c50b4
commit
c6a6f04697
1 changed files with 1 additions and 1 deletions
|
@ -107,7 +107,7 @@ void ColumnProject::render (
|
||||||
std::vector <std::string> raw;
|
std::vector <std::string> raw;
|
||||||
wrapText (raw, project, width, _hyphenate);
|
wrapText (raw, project, width, _hyphenate);
|
||||||
|
|
||||||
for (auto& i : raw)
|
for (const auto& i : raw)
|
||||||
renderStringLeft (lines, width, color, i);
|
renderStringLeft (lines, width, color, i);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue