Fix Array and Dictionary id() and dictionary test bug

(cherry picked from commit e2ed9d13eb)
This commit is contained in:
cdemirer 2021-12-30 13:14:09 +08:00 committed by Rémi Verschelde
parent 5b240d833a
commit dd57c321bf
No known key found for this signature in database
GPG key ID: C3336907360768E1
2 changed files with 2 additions and 2 deletions

View file

@ -474,7 +474,7 @@ Variant Array::max() const {
}
const void *Array::id() const {
return _p->array.ptr();
return _p;
}
Array::Array(const Array &p_from) {

View file

@ -280,7 +280,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) {