diff options
Diffstat (limited to 'src/nvim/memory.h')
-rw-r--r-- | src/nvim/memory.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/nvim/memory.h b/src/nvim/memory.h index e98a5dc228..0788670142 100644 --- a/src/nvim/memory.h +++ b/src/nvim/memory.h @@ -45,6 +45,8 @@ EXTERN size_t arena_alloc_count INIT( = 0); ((v).capacity = (s), \ (v).items = (void *)arena_alloc(a, sizeof((v).items[0]) * (v).capacity, true)) +#define ARENA_BLOCK_SIZE 4096 + #ifdef INCLUDE_GENERATED_DECLARATIONS # include "memory.h.generated.h" #endif |