mirror of
https://github.com/godotengine/godot.git
synced 2025-10-19 16:03:29 +00:00
Both Array and Dictionary are always in shared mode (removed copy on write).
This commit is contained in:
parent
57166cd292
commit
e6583117df
17 changed files with 50 additions and 93 deletions
|
@ -2631,9 +2631,9 @@ public:
|
|||
return 0;
|
||||
}
|
||||
#endif
|
||||
Array in_values(true);
|
||||
Array out_values(true);
|
||||
Array work_mem(true);
|
||||
Array in_values;
|
||||
Array out_values;
|
||||
Array work_mem;
|
||||
|
||||
in_values.resize(in_count);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue