mirror of
https://github.com/Redot-Engine/redot-engine.git
synced 2025-12-06 07:17:42 -05:00
Both Array and Dictionary are always in shared mode (removed copy on write).
This commit is contained in:
@@ -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);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user