This commit is contained in:
Alexander Batalov 2023-05-27 17:25:30 +03:00
parent cae990b65e
commit 30090c9fbc
1 changed files with 1 additions and 1 deletions

View File

@ -405,7 +405,7 @@ public:
pairs.push_back(KeyValuePair { std::move(keyEl), ArrayElement { val, program } });
} else {
auto index = it - pairs.begin();
std::swap(pairs[index].value, ArrayElement { val, program });
pairs[index].value = ArrayElement { val, program };
}
}
}