From 82628a6b0e490a180ba822336c7177cda71ba57d Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Thu, 10 Apr 2014 06:24:33 +1000 Subject: Code cleanup: use struct type for mempool & style edits --- source/blender/makesdna/DNA_customdata_types.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/blender/makesdna/DNA_customdata_types.h') diff --git a/source/blender/makesdna/DNA_customdata_types.h b/source/blender/makesdna/DNA_customdata_types.h index 325c2a8df54..b6ae49cad61 100644 --- a/source/blender/makesdna/DNA_customdata_types.h +++ b/source/blender/makesdna/DNA_customdata_types.h @@ -69,7 +69,7 @@ typedef struct CustomData { int pad[1]; int totlayer, maxlayer; /* number of layers, size of layers array */ int totsize; /* in editmode, total size of all data layers */ - void *pool; /* Bmesh: Memory pool for allocation of blocks */ + struct BLI_mempool *pool; /* (BMesh Only): Memory pool for allocation of blocks */ CustomDataExternal *external; /* external file storing customdata layers */ } CustomData; -- cgit v1.2.3