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
commit 668d6a1c5c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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) {