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>2010-10-01 19:59:34 +0400
committerCampbell Barton <ideasman42@gmail.com>2010-10-01 19:59:34 +0400
commit38b6ca03588a9e772a30e2daa601a95ff3cc224e (patch)
treed2afb7fc178c9a341d6e5b9e211d0ab11d9add8a /source/blender/makesdna/DNA_vec_types.h
parentf9884b8137c6689f4c5223262488fd4b3d6827d6 (diff)
stop dna from parsing structs that aren't used needed.
Diffstat (limited to 'source/blender/makesdna/DNA_vec_types.h')
-rw-r--r--source/blender/makesdna/DNA_vec_types.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/makesdna/DNA_vec_types.h b/source/blender/makesdna/DNA_vec_types.h
index 5d6f1039ed5..b5e3dff7db9 100644
--- a/source/blender/makesdna/DNA_vec_types.h
+++ b/source/blender/makesdna/DNA_vec_types.h
@@ -43,7 +43,7 @@ typedef struct vec2f {
} vec2f;
/* not used at the moment */
-#if 0
+/*
typedef struct vec2i {
int x, y;
} vec2i;
@@ -75,7 +75,7 @@ typedef struct vec4f {
typedef struct vec4d {
double x, y, z, w;
} vec4d;
-#endif
+*/
typedef struct rcti {
int xmin, xmax;