This commit is contained in:
Federico Cecchetto 2021-07-11 17:12:24 +02:00
parent 9ed8626067
commit 063caa51f9

View File

@ -50,6 +50,12 @@ namespace scripting
{
}
array::array(array&& other) noexcept
{
this->id_ = other.id_;
other.id_ = 0;
}
array::array()
{
this->id_ = make_array();