Update pointers

This commit is contained in:
Federico Cecchetto
2021-07-21 14:10:16 +02:00
parent 6f53ed5d87
commit 7139e8d3c4
2 changed files with 7 additions and 6 deletions

View File

@ -38,9 +38,6 @@ namespace scripting
array& operator=(const array& other);
array& operator=(array&& other) noexcept;
void add() const;
void release() const;
std::vector<array_key> get_keys() const;
unsigned int size() const;
@ -85,7 +82,11 @@ namespace scripting
return {this->id_, this->get_value_id(key.key)};
}
}
private:
void add() const;
void release() const;
unsigned int id_;
};
}