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-31 16:17:39 +0300
committerCampbell Barton <ideasman42@gmail.com>2010-10-31 16:17:39 +0300
commit6b677a2616a6cac3c58e79eda19080a953d68136 (patch)
treebb0680a5735467292fa7163ecdd44c80e9d265be /source/blender/blenkernel/BKE_utildefines.h
parent3a3ac0de8f13b8c06a6c0dea63107d9d3f151f42 (diff)
own recent commit broke this python import:
from mathutils.geometry import PolyFill I couldn't find a way for python's inittab to do this so just inserting mathutils.geometry into sys.modules manually.
Diffstat (limited to 'source/blender/blenkernel/BKE_utildefines.h')
-rw-r--r--source/blender/blenkernel/BKE_utildefines.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenkernel/BKE_utildefines.h b/source/blender/blenkernel/BKE_utildefines.h
index a7b4a71c84d..a1968459fd6 100644
--- a/source/blender/blenkernel/BKE_utildefines.h
+++ b/source/blender/blenkernel/BKE_utildefines.h
@@ -282,7 +282,7 @@ behaviour, though it may not be the best in practice.
#elif defined(__GNUC__)
#define BM_INLINE static inline __attribute((always_inline))
#else
-#warning "MSC/GNUC defines not found, inline non-functional"
+/* #warning "MSC/GNUC defines not found, inline non-functional" */
#define BM_INLINE static
#endif