Both Array and Dictionary are always in shared mode (removed copy on write).

This commit is contained in:
Juan Linietsky
2017-01-11 08:53:31 -03:00
parent 57166cd292
commit e6583117df
17 changed files with 50 additions and 93 deletions

View File

@ -53,8 +53,6 @@ public:
bool empty() const;
void clear();
bool is_shared() const;
bool operator==(const Array& p_array) const;
uint32_t hash() const;
@ -87,7 +85,7 @@ public:
Variant pop_front();
Array(const Array& p_from);
Array(bool p_shared=false);
Array();
~Array();
};