update older vs ide projects

This commit is contained in:
Daan Leijen 2023-03-15 20:38:10 -07:00
parent e937070cf1
commit c4c96d2f8d
5 changed files with 9 additions and 0 deletions

View file

@ -699,6 +699,7 @@ static inline size_t mi_ctz(uintptr_t x) {
#elif defined(_MSC_VER)
#include <limits.h> // LONG_MAX
#include <intrin.h> // BitScanReverse64
#define MI_HAVE_FAST_BITSCAN
static inline size_t mi_clz(uintptr_t x) {
if (x==0) return MI_INTPTR_BITS;