Skip to content

Commit

Permalink
Update contrib/libs/croaring to 1.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
robot-piglet committed May 10, 2023
1 parent 5bfd0cf commit c22b0e9
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions contrib/libs/croaring/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# CRoaring

[![Ubuntu-CI](https://github.com/RoaringBitmap/CRoaring/actions/workflows/ubuntu-noexcept-ci.yml/badge.svg)](https://github.com/RoaringBitmap/CRoaring/actions/workflows/ubuntu-noexcept-ci.yml) [![VS17-CI](https://github.com/RoaringBitmap/CRoaring/actions/workflows/vs17-ci.yml/badge.svg)](https://github.com/RoaringBitmap/CRoaring/actions/workflows/vs17-ci.yml)
[![Fuzzing Status](https://oss-fuzz-build-logs.storage.googleapis.com/badges/croaring.svg)](https://bugs.chromium.org/p/oss-fuzz/issues/list?sort=-opened&can=1&q=proj:croaring)

[![Doxygen Documentation](https://img.shields.io/badge/docs-doxygen-green.svg)](http://roaringbitmap.github.io/CRoaring/)

Expand Down
4 changes: 2 additions & 2 deletions contrib/libs/croaring/include/roaring/roaring_version.h
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
// /include/roaring/roaring_version.h automatically generated by release.py, do not change by hand
#ifndef ROARING_INCLUDE_ROARING_VERSION
#define ROARING_INCLUDE_ROARING_VERSION
#define ROARING_VERSION "1.1.0"
#define ROARING_VERSION "1.1.2"
enum {
ROARING_VERSION_MAJOR = 1,
ROARING_VERSION_MINOR = 1,
ROARING_VERSION_REVISION = 0
ROARING_VERSION_REVISION = 2
};
#endif // ROARING_INCLUDE_ROARING_VERSION
4 changes: 2 additions & 2 deletions contrib/libs/croaring/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 Expand Up @@ -262,7 +262,7 @@ int croaring_hardware_support() {
}
#endif

#endif // defined(__x86_64__) || defined(_M_AMD64) // x64
#ifdef __cplusplus
} } } // extern "C" { namespace roaring { namespace internal {
#endif
#endif // defined(__x86_64__) || defined(_M_AMD64) // x64

0 comments on commit c22b0e9

Please sign in to comment.