aboutsummaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
authorFeoramund <161657516+Feoramund@users.noreply.github.com>2025-06-14 13:54:19 -0400
committerFeoramund <161657516+Feoramund@users.noreply.github.com>2025-06-15 12:34:15 -0400
commit652c0c997d0c8ce8cec7520e77677e461a75663e (patch)
treea3792b4c4ef14b5747e02199d1b7087973badd68 /core
parentc1e31711788f5ce7a2ce9d2f030f0b1f5773f6f4 (diff)
mem: Remove bogus comments
There is no `dynamic_arena_free`; the mode is not implemented
Diffstat (limited to 'core')
-rw-r--r--core/mem/allocators.odin12
1 files changed, 0 insertions, 12 deletions
diff --git a/core/mem/allocators.odin b/core/mem/allocators.odin
index 5e16e5207..66c7a72bb 100644
--- a/core/mem/allocators.odin
+++ b/core/mem/allocators.odin
@@ -1872,9 +1872,6 @@ If `old_memory` is `nil`, this procedure acts just like `dynamic_arena_alloc()`,
allocating a memory region `size` bytes in size, aligned on a boundary specified
by `alignment`.
-If `size` is 0, this procedure acts just like `dynamic_arena_free()`, freeing
-the memory region located at an address specified by `old_memory`.
-
This procedure returns the pointer to the resized memory region.
*/
@(require_results)
@@ -1900,9 +1897,6 @@ If `old_memory` is `nil`, this procedure acts just like `dynamic_arena_alloc()`,
allocating a memory region `size` bytes in size, aligned on a boundary specified
by `alignment`.
-If `size` is 0, this procedure acts just like `dynamic_arena_free()`, freeing the
-memory region located at an address specified by `old_memory`.
-
This procedure returns the slice of the resized memory region.
*/
@(require_results)
@@ -1934,9 +1928,6 @@ If `old_memory` is `nil`, this procedure acts just like `dynamic_arena_alloc()`,
allocating a memory region `size` bytes in size, aligned on a boundary specified
by `alignment`.
-If `size` is 0, this procedure acts just like `dynamic_arena_free()`, freeing the
-memory region located at an address specified by `old_memory`.
-
This procedure returns the pointer to the resized memory region.
*/
@(require_results)
@@ -1962,9 +1953,6 @@ If `old_memory` is `nil`, this procedure acts just like `dynamic_arena_alloc()`,
allocating a memory region `size` bytes in size, aligned on a boundary specified
by `alignment`.
-If `size` is 0, this procedure acts just like `dynamic_arena_free()`, freeing
-the memory region located at an address specified by `old_memory`.
-
This procedure returns the slice of the resized memory region.
*/
@(require_results)