Fix a typo

This commit is contained in:
Nobuyoshi Nakada 2025-11-19 16:05:12 +09:00
parent 1443f89d69
commit e31dc5f193
No known key found for this signature in database
GPG Key ID: 3582D74E1FEE4465

View File

@ -556,7 +556,7 @@ ntz_int64(uint64_t x)
{
#if defined(__x86_64__) && defined(__BMI__)
return (unsigned)_tzcnt_u64(x);
`
#elif defined(_WIN64) && defined(_MSC_VER)
unsigned long r;
return _BitScanForward64(&r, x) ? (int)r : 64;