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 @@ -464,10 +464,10 @@ protected:
464464 return __const_reference (&__first_, __storage_type (1 ) << __pos);
465465 }
466466 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX23 __iterator __make_iter (size_t __pos) _NOEXCEPT {
467- return __iterator (&__first_ + __pos / __bits_per_word , __pos % __bits_per_word );
467+ return __iterator (&__first_, __pos);
468468 }
469469 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX23 __const_iterator __make_iter (size_t __pos) const _NOEXCEPT {
470- return __const_iterator (&__first_ + __pos / __bits_per_word , __pos % __bits_per_word );
470+ return __const_iterator (&__first_, __pos);
471471 }
472472
473473 _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