Merge pull request #103231 from aaronfranke/doc-free-memdelete

Document that `memdelete()` is the GDExtension C++ version of `free()`
This commit is contained in:
Rémi Verschelde 2025-06-05 13:10:32 +02:00
commit ebc04d7587
No known key found for this signature in database
GPG key ID: C3336907360768E1

View file

@ -555,7 +555,7 @@
<method name="free" keywords="delete, remove, kill, die">
<return type="void" />
<description>
Deletes the object from memory. Pre-existing references to the object become invalid, and any attempt to access them will result in a run-time error. Checking the references with [method @GlobalScope.is_instance_valid] will return [code]false[/code].
Deletes the object from memory. Pre-existing references to the object become invalid, and any attempt to access them will result in a runtime error. Checking the references with [method @GlobalScope.is_instance_valid] will return [code]false[/code]. This is equivalent to the [code]memdelete[/code] function in GDExtension C++.
</description>
</method>
<method name="get" qualifiers="const">