File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -465,10 +465,10 @@ protected:
465465 return const_reference (&__first_, __storage_type (1 ) << __pos);
466466 }
467467 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX23 __iterator __make_iter (size_t __pos) _NOEXCEPT {
468- return __iterator (&__first_ + __pos / __bits_per_word , __pos % __bits_per_word );
468+ return __iterator (&__first_, __pos);
469469 }
470470 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX23 __const_iterator __make_iter (size_t __pos) const _NOEXCEPT {
471- return __const_iterator (&__first_ + __pos / __bits_per_word , __pos % __bits_per_word );
471+ return __const_iterator (&__first_, __pos);
472472 }
473473
474474 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX23 void operator &=(const __bitset& __v) _NOEXCEPT;
You can’t perform that action at this time.
0 commit comments