Fix Array and Dictionary id() and dictionary test bug

This commit is contained in:
cdemirer 2021-12-30 13:14:09 +08:00
parent 9f058674ac
commit e2ed9d13eb
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) {