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>2018-03-15 03:16:32 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-03-15 03:16:32 +0300
commit71139cedcb03001d746338b31e08da6854769832 (patch)
tree0c35c0b2914a21c7ae1c02e693d9ce5bd2b78f3c /source/blender/blenlib/intern/math_bits_inline.c
parente55c29b4ec1a895b151b13738423205607688b85 (diff)
Missed last commit
Diffstat (limited to 'source/blender/blenlib/intern/math_bits_inline.c')
-rw-r--r--source/blender/blenlib/intern/math_bits_inline.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/blenlib/intern/math_bits_inline.c b/source/blender/blenlib/intern/math_bits_inline.c
index 3829b9d219c..933ded55d53 100644
--- a/source/blender/blenlib/intern/math_bits_inline.c
+++ b/source/blender/blenlib/intern/math_bits_inline.c
@@ -64,7 +64,9 @@ MINLINE unsigned int bitscan_forward_clear_uint(unsigned int *a)
MINLINE int bitscan_reverse_i(int a)
{
+#if 0 /* No BLI_assert in INLINE :/ */
BLI_assert(a != 0);
+#endif
# ifdef _MSC_VER
unsigned long clz;
_BitScanReverse(&clz, a);