[Bf-blender-cvs] [07fa1b4] master: parenthisize macro args to avoid errors

Campbell Barton noreply at git.blender.org
Fri Jul 24 08:12:35 CEST 2015


Commit: 07fa1b49d9e9a0729e85f5fb62a202ef34387596
Author: Campbell Barton
Date:   Fri Jul 24 15:53:52 2015 +1000
Branches: master
https://developer.blender.org/rB07fa1b49d9e9a0729e85f5fb62a202ef34387596

parenthisize macro args to avoid errors

===================================================================

M	source/blender/blenlib/BLI_utildefines.h

===================================================================

diff --git a/source/blender/blenlib/BLI_utildefines.h b/source/blender/blenlib/BLI_utildefines.h
index 8f2f906..65e8dcd 100644
--- a/source/blender/blenlib/BLI_utildefines.h
+++ b/source/blender/blenlib/BLI_utildefines.h
@@ -406,7 +406,7 @@ extern "C" {
 	CHECK_TYPE_INLINE(a, float), CHECK_TYPE_INLINE(b, float), \
 	((fabsf((float)((a) - (b))) >= (float) FLT_EPSILON) ? false : true))
 
-#define IS_EQT(a, b, c) ((a > b) ? (((a - b) <= c) ? 1 : 0) : ((((b - a) <= c) ? 1 : 0)))
+#define IS_EQT(a, b, c) ((a > b) ? ((((a) - (b)) <= c) ? 1 : 0) : (((((b) - (a)) <= c) ? 1 : 0)))
 #define IN_RANGE(a, b, c) ((b < c) ? ((b < a && a < c) ? 1 : 0) : ((c < a && a < b) ? 1 : 0))
 #define IN_RANGE_INCL(a, b, c) ((b < c) ? ((b <= a && a <= c) ? 1 : 0) : ((c <= a && a <= b) ? 1 : 0))
 
@@ -421,7 +421,7 @@ extern "C" {
 
 /* array helpers */
 #define ARRAY_LAST_ITEM(arr_start, arr_dtype, tot) \
-	(arr_dtype *)((char *)arr_start + (sizeof(*((arr_dtype *)NULL)) * (size_t)(tot - 1)))
+	(arr_dtype *)((char *)(arr_start) + (sizeof(*((arr_dtype *)NULL)) * (size_t)(tot - 1)))
 
 #define ARRAY_HAS_ITEM(arr_item, arr_start, tot)  ( \
 	CHECK_TYPE_PAIR_INLINE(arr_start, arr_item), \
@@ -483,10 +483,10 @@ extern "C" {
 
 #if defined(__GNUC__) || defined(__clang__)
 #define POINTER_OFFSET(v, ofs) \
-	((typeof(v))((char *)(v) + ofs))
+	((typeof(v))((char *)(v) + (ofs)))
 #else
 #define POINTER_OFFSET(v, ofs) \
-	((void *)((char *)(v) + ofs))
+	((void *)((char *)(v) + (ofs)))
 #endif
 
 /* Like offsetof(typeof(), member), for non-gcc compilers */




More information about the Bf-blender-cvs mailing list