diff options
author | Juan Linietsky <reduzio@gmail.com> | 2017-01-11 08:53:31 -0300 |
---|---|---|
committer | Juan Linietsky <reduzio@gmail.com> | 2017-01-11 08:54:17 -0300 |
commit | e6583117df95373cffb12105de82d3816ca09f85 (patch) | |
tree | 9953c32a4b50db9cc99d0999c7904a27748a0ace /core/array.h | |
parent | 57166cd2923cc6d32b37c34f6ca2f32f6941e4a8 (diff) | |
download | redot-engine-e6583117df95373cffb12105de82d3816ca09f85.tar.gz |
Both Array and Dictionary are always in shared mode (removed copy on write).
Diffstat (limited to 'core/array.h')
-rw-r--r-- | core/array.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/core/array.h b/core/array.h index af57940d79..16ab16002c 100644 --- a/core/array.h +++ b/core/array.h @@ -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(); }; |