summaryrefslogtreecommitdiffstats
path: root/core/variant/array.cpp
diff options
context:
space:
mode:
authorDmitrii Maganov <vonagam@gmail.com>2023-01-08 05:41:06 +0200
committerDmitrii Maganov <vonagam@gmail.com>2023-01-08 07:29:10 +0200
commit5e2ac1a31ee34842438a3a76c54f6a15df77bb95 (patch)
treeacc94d855b8469ba987c7b3bc2b91dce9192ce69 /core/variant/array.cpp
parentfcba87e696d58912838d8a4a6987b10efa28e78f (diff)
downloadredot-engine-5e2ac1a31ee34842438a3a76c54f6a15df77bb95.tar.gz
GDScript: Begin making constants deep, not shallow or flat
Diffstat (limited to 'core/variant/array.cpp')
-rw-r--r--core/variant/array.cpp10
1 files changed, 0 insertions, 10 deletions
diff --git a/core/variant/array.cpp b/core/variant/array.cpp
index 0fecc2fe94..f8af78f3c1 100644
--- a/core/variant/array.cpp
+++ b/core/variant/array.cpp
@@ -54,16 +54,6 @@ void Array::_ref(const Array &p_from) const {
ERR_FAIL_COND(!_fp); // should NOT happen.
- if (unlikely(_fp->read_only != nullptr)) {
- // If p_from is a read-only array, just copy the contents to avoid further modification.
- _unref();
- _p = memnew(ArrayPrivate);
- _p->refcount.init();
- _p->array = _fp->array;
- _p->typed = _fp->typed;
- return;
- }
-
if (_fp == _p) {
return; // whatever it is, nothing to do here move along
}