Remove unnecessary this-> expressions

This commit is contained in:
A Thousand Ships
2024-01-28 21:51:39 +01:00
parent 17e7f85c06
commit 15369fdb1d
39 changed files with 160 additions and 160 deletions

View File

@ -251,7 +251,7 @@ void Dictionary::clear() {
void Dictionary::merge(const Dictionary &p_dictionary, bool p_overwrite) {
for (const KeyValue<Variant, Variant> &E : p_dictionary._p->variant_map) {
if (p_overwrite || !has(E.key)) {
this->operator[](E.key) = E.value;
operator[](E.key) = E.value;
}
}
}