mirror of
https://github.com/GothenburgBitFactory/timewarrior.git
synced 2025-06-26 10:54:28 +02:00
Cleanup: Greater use of const
This commit is contained in:
parent
addb89e13d
commit
2dd14c0b4c
1 changed files with 3 additions and 3 deletions
|
@ -220,7 +220,7 @@ void Rules::set (const std::string& key, const std::string& value)
|
||||||
std::vector <std::string> Rules::all (const std::string& stem) const
|
std::vector <std::string> Rules::all (const std::string& stem) const
|
||||||
{
|
{
|
||||||
std::vector <std::string> items;
|
std::vector <std::string> items;
|
||||||
for (auto& it : _settings)
|
for (const auto& it : _settings)
|
||||||
if (stem == "" || it.first.find (stem) == 0)
|
if (stem == "" || it.first.find (stem) == 0)
|
||||||
items.push_back (it.first);
|
items.push_back (it.first);
|
||||||
|
|
||||||
|
@ -245,7 +245,7 @@ std::string Rules::dump () const
|
||||||
<< '\n';
|
<< '\n';
|
||||||
|
|
||||||
out << " Settings\n";
|
out << " Settings\n";
|
||||||
for (auto& item : _settings)
|
for (const auto& item : _settings)
|
||||||
out << " " << item.first << "=" << item.second << '\n';
|
out << " " << item.first << "=" << item.second << '\n';
|
||||||
|
|
||||||
return out.str ();
|
return out.str ();
|
||||||
|
@ -396,7 +396,7 @@ void Rules::parseRuleSettings (
|
||||||
std::vector <unsigned int> indents;
|
std::vector <unsigned int> indents;
|
||||||
indents.push_back (0);
|
indents.push_back (0);
|
||||||
|
|
||||||
for (auto& line : lines)
|
for (const auto& line : lines)
|
||||||
{
|
{
|
||||||
auto indent = getIndentation (line);
|
auto indent = getIndentation (line);
|
||||||
auto tokens = tokenizeLine (line);
|
auto tokens = tokenizeLine (line);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue