Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2014-04-10 00:24:33 +0400
committerCampbell Barton <ideasman42@gmail.com>2014-04-10 00:49:25 +0400
commit82628a6b0e490a180ba822336c7177cda71ba57d (patch)
treedfe4a3f7afe882da40fca593c0fcfb839c429ac9 /source/blender/makesdna/DNA_customdata_types.h
parentc777f691ad427260fb39c8d191d3041169e557dd (diff)
Code cleanup: use struct type for mempool & style edits
Diffstat (limited to 'source/blender/makesdna/DNA_customdata_types.h')
-rw-r--r--source/blender/makesdna/DNA_customdata_types.h2
1 files changed, 1 insertions, 1 deletions
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;