Skip to content

Commit

Permalink
Minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
lemire committed Jan 6, 2023
1 parent bc51a40 commit 7c787c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/roaring/portability.h
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ inline int __builtin_clzll(unsigned long long input_num) {

#ifdef USENEON
// we can always compute the popcount fast.
#elif (defined(_M_ARM) || defined(_M_ARM64)) && (defined(_WIN64) && defined(CROARING_REGULAR_VISUAL_STUDIO) && CROARING_REGULAR_VISUAL_STUDIO)
#elif (defined(_M_ARM) || defined(_M_ARM64)) && ((defined(_WIN64) || defined(_WIN32)) && defined(CROARING_REGULAR_VISUAL_STUDIO) && CROARING_REGULAR_VISUAL_STUDIO)
// we will need this function:
static inline int hammingbackup(uint64_t x) {
uint64_t c1 = UINT64_C(0x5555555555555555);
Expand Down

0 comments on commit 7c787c6

Please sign in to comment.