From 52a283a1ee600ae5d27347c36699408480f7b37d Mon Sep 17 00:00:00 2001 From: Jacques Lucke Date: Wed, 7 May 2025 20:48:26 +0200 Subject: [PATCH] Cleanup: fix misleading comment LinearAllocator does not REallocate, it just allocates a new buffer. --- source/blender/blenlib/BLI_linear_allocator.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/blender/blenlib/BLI_linear_allocator.hh b/source/blender/blenlib/BLI_linear_allocator.hh index 8418e350cd1..df9c3120abb 100644 --- a/source/blender/blenlib/BLI_linear_allocator.hh +++ b/source/blender/blenlib/BLI_linear_allocator.hh @@ -7,7 +7,7 @@ * * A linear allocator is the simplest form of an allocator. It never reuses any memory, and * therefore does not need a deallocation method. It simply hands out consecutive buffers of - * memory. When the current buffer is full, it reallocates a new larger buffer and continues. + * memory. When the current buffer is full, it allocates a new larger buffer and continues. */ #pragma once