mirror of
https://github.com/XLabsProject/s1x-client.git
synced 2023-08-02 15:02:12 +02:00
small cleanup (#669)
This commit is contained in:
parent
d16873d8f1
commit
184a82fd8f
@ -41,20 +41,20 @@ namespace utils
|
|||||||
{
|
{
|
||||||
const auto& key = key_values[i];
|
const auto& key = key_values[i];
|
||||||
const auto& value = key_values[i + 1];
|
const auto& value = key_values[i + 1];
|
||||||
this->key_value_pairs_[key] = value;
|
|
||||||
|
if (!this->key_value_pairs_.contains(key))
|
||||||
|
{
|
||||||
|
this->key_value_pairs_[key] = value;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
std::string info_string::build() const
|
std::string info_string::build() const
|
||||||
{
|
{
|
||||||
//auto first = true;
|
|
||||||
std::string info_string;
|
std::string info_string;
|
||||||
for (const auto& [key, val] : this->key_value_pairs_)
|
for (const auto& [key, val] : this->key_value_pairs_)
|
||||||
{
|
{
|
||||||
//if (first) first = false;
|
|
||||||
/*else*/
|
|
||||||
info_string.append("\\");
|
info_string.append("\\");
|
||||||
|
|
||||||
info_string.append(key);
|
info_string.append(key);
|
||||||
info_string.append("\\");
|
info_string.append("\\");
|
||||||
info_string.append(val);
|
info_string.append(val);
|
||||||
|
Loading…
Reference in New Issue
Block a user