Fix MSVSC2017 error

The last compiler version needs this include
This commit is contained in:
Antonio Vazquez 2017-12-20 10:23:12 +01:00
parent d0ac5d3810
commit 94a3ee56c7
Notes: blender-bot 2023-02-14 06:17:11 +01:00
Referenced by issue #53683, 2.79a release
1 changed files with 4 additions and 0 deletions

View File

@ -25,6 +25,10 @@
#ifndef __MATH_BITS_INLINE_C__
#define __MATH_BITS_INLINE_C__
#ifdef _MSC_VER
# include <intrin.h>
#endif
#include "BLI_math_bits.h"
MINLINE int bitscan_forward_i(int a)