ColProject: Use of const

This commit is contained in:
Paul Beckingham 2016-02-23 21:43:44 -05:00
parent f2863c50b4
commit c6a6f04697

View file

@ -107,7 +107,7 @@ void ColumnProject::render (
std::vector <std::string> raw;
wrapText (raw, project, width, _hyphenate);
for (auto& i : raw)
for (const auto& i : raw)
renderStringLeft (lines, width, color, i);
}
}