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>2012-10-31 15:45:41 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-10-31 15:45:41 +0400
commitdb8b7fcabbb1a5af77038e5423b4ecbadbdefeda (patch)
tree989e09f13458cef22c35c33a658674a9c5cd2cc4 /source/blender/blenkernel/intern/customdata.c
parent3406586d8829c60a420b26977e160ab53b26a833 (diff)
style cleanup and correct own invalid comment.
Diffstat (limited to 'source/blender/blenkernel/intern/customdata.c')
-rw-r--r--source/blender/blenkernel/intern/customdata.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/source/blender/blenkernel/intern/customdata.c b/source/blender/blenkernel/intern/customdata.c
index 76ed8467c8f..93c776ae30e 100644
--- a/source/blender/blenkernel/intern/customdata.c
+++ b/source/blender/blenkernel/intern/customdata.c
@@ -75,12 +75,9 @@ BLI_STATIC_ASSERT(sizeof(((CustomData *)NULL)->typemap) /
typedef struct LayerTypeInfo {
int size; /* the memory size of one element of this layer's data */
- /**
- * name of the struct used, for file writing */
+ /** name of the struct used, for file writing */
const char *structname;
- /**
- * number of structs per element, for file writing
- * (set to zero skips writing this data to disk/undo) */
+ /** number of structs per element, for file writing */
int structnum;
/**