Fix typo: _defined => defined (#9153)

This commit is contained in:
Stephan T. Lavavej 2023-05-11 16:34:45 -07:00 committed by GitHub
parent 779b82c098
commit 59edfdb315
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -150,7 +150,7 @@ inline LINALG_HD int Popc(uint64_t v) {
return __popcll(v);
#elif defined(__GNUC__) || defined(__clang__)
return __builtin_popcountll(v);
#elif defined(_MSC_VER) && _defined(_M_X64)
#elif defined(_MSC_VER) && defined(_M_X64)
return __popcnt64(v);
#else
return NativePopc(v);