Cleanup: Removed 'const auto', which is implied by the container

This commit is contained in:
Paul Beckingham 2016-04-05 22:55:18 -04:00
parent ed5c155051
commit 2a47f769cd
5 changed files with 11 additions and 11 deletions

View file

@ -75,7 +75,7 @@ std::string Extensions::dump () const
std::stringstream out;
out << "Extensions\n";
for (const auto& script : _scripts)
for (auto& script : _scripts)
out << " " << script << "\n";
return out.str ();