We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2e7c7d0 commit 511a91aCopy full SHA for 511a91a
include/ctre/first.hpp
@@ -495,7 +495,9 @@ template <size_t Capacity> class point_set {
495
insert(A,B);
496
}
497
constexpr void populate(can_be_anything) {
498
- insert(std::numeric_limits<int64_t>::min(), std::numeric_limits<int64_t>::max());
+ points[0].low = std::numeric_limits<int64_t>::min();
499
+ points[0].high = std::numeric_limits<int64_t>::max();
500
+ used = 1;
501
502
template <typename... Content> constexpr void populate(ctre::negative_set<Content...> nset) {
503
negative_helper(nset, [&](int64_t low, int64_t high){
0 commit comments