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>2011-12-28 18:55:45 +0400
committerCampbell Barton <ideasman42@gmail.com>2011-12-28 18:55:45 +0400
commitba6f211226190834003769fb8a8b15bda777e290 (patch)
treea754109863c9fec6ed8be38a1cbbd15e4a4dec02 /source/blender/makesdna/DNA_mesh_types.h
parent7c417fbcfb5e111ffc3f8d48d78605deb29a2ffe (diff)
fix for recent compile error
Diffstat (limited to 'source/blender/makesdna/DNA_mesh_types.h')
-rw-r--r--source/blender/makesdna/DNA_mesh_types.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/source/blender/makesdna/DNA_mesh_types.h b/source/blender/makesdna/DNA_mesh_types.h
index f39095886da..eae7102ef42 100644
--- a/source/blender/makesdna/DNA_mesh_types.h
+++ b/source/blender/makesdna/DNA_mesh_types.h
@@ -68,7 +68,7 @@ typedef struct Mesh {
struct Key *key;
struct Material **mat;
-#ifdef USE_BMESH_FORWARD_COMPAT
+/*#ifdef USE_BMESH_FORWARD_COMPAT*/ /* XXX - ifdefs dont work here! */
/* BMESH ONLY */
/*new face structures*/
struct MPoly *mpoly;
@@ -77,7 +77,7 @@ typedef struct Mesh {
struct MLoopUV *mloopuv;
struct MLoopCol *mloopcol;
/* END BMESH ONLY */
-#endif
+/*#endif*/
struct MFace *mface; /* array of mesh object mode faces */
struct MTFace *mtface; /* store face UV's and texture here */
@@ -94,19 +94,19 @@ typedef struct Mesh {
struct CustomData vdata, edata, fdata;
-#ifdef USE_BMESH_FORWARD_COMPAT
+/*#ifdef USE_BMESH_FORWARD_COMPAT*/ /* XXX - ifdefs dont work here! */
/* BMESH ONLY */
struct CustomData pdata, ldata;
/* END BMESH ONLY */
-#endif
+/*#endif*/
int totvert, totedge, totface, totselect;
-#ifdef USE_BMESH_FORWARD_COMPAT
+/*#ifdef USE_BMESH_FORWARD_COMPAT*/
/* BMESH ONLY */
int totpoly, totloop;
/* END BMESH ONLY */
-#endif
+/*#endif*/ /* XXX - ifdefs dont work here! */
/* the last selected vertex/edge/face are used for the active face however
* this means the active face must always be selected, this is to keep track