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:
authorDamien Plisson <damien.plisson@yahoo.fr>2010-02-09 14:01:31 +0300
committerDamien Plisson <damien.plisson@yahoo.fr>2010-02-09 14:01:31 +0300
commit945a126170137073b4930e53c016a674601232d6 (patch)
tree378f85fa4db7c726f318c0224501862b6d42a410 /source/blender/blenkernel/BKE_utildefines.h
parent720d26f4b0551510594270a975b2ce8a533cd66a (diff)
Warning fixes
Diffstat (limited to 'source/blender/blenkernel/BKE_utildefines.h')
-rw-r--r--source/blender/blenkernel/BKE_utildefines.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/blenkernel/BKE_utildefines.h b/source/blender/blenkernel/BKE_utildefines.h
index b33aa3d163c..edb2d37c2c0 100644
--- a/source/blender/blenkernel/BKE_utildefines.h
+++ b/source/blender/blenkernel/BKE_utildefines.h
@@ -260,8 +260,6 @@ behaviour, though it may not be the best in practice.
/*set the count of the array*/
#define V_SETCOUNT(vec, count) _##vec##_count = (count)
-#endif
-
/*little macro so inline keyword works*/
#if defined(_MSC_VER)
#define BM_INLINE static __forceinline
@@ -270,3 +268,5 @@ behaviour, though it may not be the best in practice.
#endif
#define BMEMSET(mem, val, size) {unsigned int _i; char *_c = (char*) mem; for (_i=0; _i<size; _i++) *_c++ = val;}
+
+#endif