fix compile error on windows

This commit is contained in:
lixianjing 2020-06-18 18:38:12 +08:00
parent 3df6048a5c
commit 3cf9590367

View File

@ -40,7 +40,7 @@ typedef struct _mem_allocator_pool_t {
mem_allocator_t allocator;
mem_allocator_t* impl;
mem_pool_t* pools[TK_MEM_POOLS_NR];;
mem_pool_t* pools[TK_MEM_POOLS_NR];
} mem_allocator_pool_t;
#define MEM_ALLOCATOR_POOL(allocator) ((mem_allocator_pool_t*)(allocator))