File tree 2 files changed +5
-13
lines changed 2 files changed +5
-13
lines changed Original file line number Diff line number Diff line change 1
1
// !!! DO NOT EDIT - THIS IS AN AUTO-GENERATED FILE !!!
2
- // Created by amalgamation.sh on 2023-02-09T21:36:47Z
2
+ // Created by amalgamation.sh on 2023-02-11T22:19:22Z
3
3
4
4
/*
5
5
* The CRoaring project is under a dual license (Apache/MIT).
58
58
// /include/roaring/roaring_version.h automatically generated by release.py, do not change by hand
59
59
#ifndef ROARING_INCLUDE_ROARING_VERSION
60
60
#define ROARING_INCLUDE_ROARING_VERSION
61
- #define ROARING_VERSION "0.9.5 "
61
+ #define ROARING_VERSION "0.9.6 "
62
62
enum {
63
63
ROARING_VERSION_MAJOR = 0 ,
64
64
ROARING_VERSION_MINOR = 9 ,
65
- ROARING_VERSION_REVISION = 5
65
+ ROARING_VERSION_REVISION = 6
66
66
};
67
67
#endif // ROARING_INCLUDE_ROARING_VERSION
68
68
/* end file include/roaring/roaring_version.h */
Original file line number Diff line number Diff line change 1
1
// !!! DO NOT EDIT - THIS IS AN AUTO-GENERATED FILE !!!
2
- // Created by amalgamation.sh on 2023-02-09T21:36:47Z
2
+ // Created by amalgamation.sh on 2023-02-11T22:19:22Z
3
3
4
4
/*
5
5
* The CRoaring project is under a dual license (Apache/MIT).
@@ -6715,15 +6715,7 @@ static inline container_t *container_remove_range(
6715
6715
}
6716
6716
6717
6717
run_container_remove_range(run, min, max);
6718
-
6719
- if (run_container_serialized_size_in_bytes(run->n_runs) <=
6720
- bitset_container_serialized_size_in_bytes()) {
6721
- *result_type = RUN_CONTAINER_TYPE;
6722
- return run;
6723
- } else {
6724
- *result_type = BITSET_CONTAINER_TYPE;
6725
- return bitset_container_from_run(run);
6726
- }
6718
+ return convert_run_to_efficient_container(run, result_type);
6727
6719
}
6728
6720
default:
6729
6721
__builtin_unreachable();
You can’t perform that action at this time.
0 commit comments