Skip to content

Commit

Permalink
fix missing semicolon (#463)
Browse files Browse the repository at this point in the history
  • Loading branch information
jwhear authored Apr 12, 2023
1 parent 6e7aa19 commit 09ed0f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/isadetection.c
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ int croaring_hardware_support() {

#elif defined(__AVX512F__) && defined(__AVX512DQ__) && defined(__AVX512BW__) && defined(__AVX512VBMI2__) && defined(__AVX512BITALG__) && defined(__AVX512VPOPCNTDQ__)
int croaring_hardware_support() {
return ROARING_SUPPORTS_AVX2 | ROARING_SUPPORTS_AVX512
return ROARING_SUPPORTS_AVX2 | ROARING_SUPPORTS_AVX512;
}
#elif defined(__AVX2__)

Expand Down

0 comments on commit 09ed0f7

Please sign in to comment.