Merge pull request #428 from diamante0018/main

maint(info_string): do not use iterator
This commit is contained in:
Maurice Heumann 2023-04-03 13:30:11 +02:00 committed by GitHub
commit b282e458b1

View File

@ -58,12 +58,12 @@ namespace utils
std::string info_string::build() const
{
std::string info_string;
for (auto i = this->key_value_pairs_.begin(); i != this->key_value_pairs_.end(); ++i)
for (const auto& [key, val] : this->key_value_pairs_)
{
info_string.append("\\");
info_string.append(i->first); // Key
info_string.append(key);
info_string.append("\\");
info_string.append(i->second); // Value
info_string.append(val);
}
return info_string;