File tree 3 files changed +9
-3
lines changed
3 files changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -495,7 +495,9 @@ template <size_t Capacity> class point_set {
495
495
insert (A,B);
496
496
}
497
497
constexpr void populate (can_be_anything) {
498
- insert (std::numeric_limits<int64_t >::min (), std::numeric_limits<int64_t >::max ());
498
+ points[0 ].low = std::numeric_limits<int64_t >::min ();
499
+ points[0 ].high = std::numeric_limits<int64_t >::max ();
500
+ used = 1 ;
499
501
}
500
502
template <typename ... Content> constexpr void populate (ctre::negative_set<Content...> nset) {
501
503
negative_helper (nset, [&](int64_t low, int64_t high){
Original file line number Diff line number Diff line change @@ -3933,7 +3933,9 @@ template <size_t Capacity> class point_set {
3933
3933
insert(A,B);
3934
3934
}
3935
3935
constexpr void populate(can_be_anything) {
3936
- insert(std::numeric_limits<int64_t>::min(), std::numeric_limits<int64_t>::max());
3936
+ points[0].low = std::numeric_limits<int64_t>::min();
3937
+ points[0].high = std::numeric_limits<int64_t>::max();
3938
+ used = 1;
3937
3939
}
3938
3940
template <typename... Content> constexpr void populate(ctre::negative_set<Content...> nset) {
3939
3941
negative_helper(nset, [&](int64_t low, int64_t high){
Original file line number Diff line number Diff line change @@ -3930,7 +3930,9 @@ template <size_t Capacity> class point_set {
3930
3930
insert (A,B);
3931
3931
}
3932
3932
constexpr void populate (can_be_anything) {
3933
- insert (std::numeric_limits<int64_t >::min (), std::numeric_limits<int64_t >::max ());
3933
+ points[0 ].low = std::numeric_limits<int64_t >::min ();
3934
+ points[0 ].high = std::numeric_limits<int64_t >::max ();
3935
+ used = 1 ;
3934
3936
}
3935
3937
template <typename ... Content> constexpr void populate (ctre::negative_set<Content...> nset) {
3936
3938
negative_helper (nset, [&](int64_t low, int64_t high){
You can’t perform that action at this time.
0 commit comments