maint(info_string): do not use iterator

This commit is contained in:
Edo 2023-04-03 13:24:20 +02:00 committed by GitHub
parent dae6173bdf
commit 6021d8b5c3

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;