Skip to content

Commit

Permalink
Fix typo: _defined => defined (#9153)
Browse files Browse the repository at this point in the history
  • Loading branch information
StephanTLavavej authored May 11, 2023
1 parent 779b82c commit 59edfdb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/xgboost/linalg.h
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 59edfdb

Please sign in to comment.