Merge pull request #56337 from cdemirer/fix-array-dictionary-id

This commit is contained in:
Rémi Verschelde
2022-01-23 00:46:53 +01:00
committed by GitHub
3 changed files with 3 additions and 3 deletions

View File

@@ -350,7 +350,7 @@ void Dictionary::operator=(const Dictionary &p_dictionary) {
}
const void *Dictionary::id() const {
return _p->variant_map.id();
return _p;
}
Dictionary::Dictionary(const Dictionary &p_from) {