mirror of
https://github.com/godotengine/godot-docs.git
synced 2026-01-03 05:48:42 +03:00
Fix std::vector reference
Co-authored-by: A Thousand Ships <96648715+AThousandShips@users.noreply.github.com>
This commit is contained in:
@@ -104,7 +104,7 @@ memnew/memdelete also use a little C++ magic and notify Objects right
|
||||
after they are created, and right before they are deleted.
|
||||
|
||||
For dynamic memory, use one of Godot's sequence types such as ``Vector<>``
|
||||
or ``LocalVector<>``. ``Vector<>`` behaves much like an STL ``Vector<>``,
|
||||
or ``LocalVector<>``. ``Vector<>`` behaves much like an STL ``std::vector<>``,
|
||||
but is simpler and uses Copy-On-Write (CoW) semantics. CoW copies of
|
||||
``Vector<>`` can safely access the same data from different threads, but
|
||||
several threads cannot access the same ``Vector<>`` instance safely.
|
||||
|
||||
Reference in New Issue
Block a user