From af59ee340f8859bdcd5f09c54bcb48776adf0c0a Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Sat, 5 Apr 2014 10:57:32 +1100 Subject: Mempool: remove BLI_MEMPOOL_SYSMALLOC, MEM_* allocs are more efficient now --- source/blender/blenlib/BLI_mempool.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source/blender/blenlib/BLI_mempool.h') diff --git a/source/blender/blenlib/BLI_mempool.h b/source/blender/blenlib/BLI_mempool.h index 3fab77f2cb2..25694f4445b 100644 --- a/source/blender/blenlib/BLI_mempool.h +++ b/source/blender/blenlib/BLI_mempool.h @@ -81,8 +81,8 @@ typedef struct BLI_mempool_iter { /* flag */ enum { - BLI_MEMPOOL_SYSMALLOC = (1 << 0), - BLI_MEMPOOL_ALLOW_ITER = (1 << 1) + BLI_MEMPOOL_NOP = 0, + BLI_MEMPOOL_ALLOW_ITER = (1 << 0), }; void BLI_mempool_iternew(BLI_mempool *pool, BLI_mempool_iter *iter) ATTR_NONNULL(); -- cgit v1.2.3