From 6d5f150b3ddfc4550a2b40d843941a65cb19af40 Mon Sep 17 00:00:00 2001 From: Jonathan G Rennison Date: Tue, 4 Nov 2025 19:23:18 +0000 Subject: [PATCH] Fix: BaseBitSet bit iteration for values which don't fit in 32 bits (#14757) --- src/core/base_bitset_type.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core/base_bitset_type.hpp b/src/core/base_bitset_type.hpp index 9ce8528d31..3b50d4e033 100644 --- a/src/core/base_bitset_type.hpp +++ b/src/core/base_bitset_type.hpp @@ -254,8 +254,8 @@ public: return std::nullopt; } - auto begin() const { return SetBitIterator(this->data).begin(); } - auto end() const { return SetBitIterator(this->data).end(); } + auto begin() const { return SetBitIterator(this->data).begin(); } + auto end() const { return SetBitIterator(this->data).end(); } private: Tstorage data; ///< Bitmask of values.