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 @@ -842,7 +842,7 @@ public:
842
842
return std::__make_bounded_iter (
843
843
std::__wrap_iter<pointer>(std::addressof (this ->__get ())),
844
844
std::__wrap_iter<pointer>(std::addressof (this ->__get ())),
845
- std::__wrap_iter<pointer>(std::addressof (this ->__get ()) + (this ->has_value ()) ? 1 : 0 ));
845
+ std::__wrap_iter<pointer>(std::addressof (this ->__get ()) + (this ->has_value () ? 1 : 0 ) ));
846
846
# else
847
847
return iterator (std::addressof (this ->__get ()));
848
848
# endif
@@ -853,7 +853,7 @@ public:
853
853
return std::__make_bounded_iter (
854
854
std::__wrap_iter<const_pointer>(std::addressof (this ->__get ())),
855
855
std::__wrap_iter<const_pointer>(std::addressof (this ->__get ())),
856
- std::__wrap_iter<const_pointer>(std::addressof (this ->__get ()) + (this ->has_value ()) ? 1 : 0 ));
856
+ std::__wrap_iter<const_pointer>(std::addressof (this ->__get ()) + (this ->has_value () ? 1 : 0 ) ));
857
857
# else
858
858
return const_iterator (std::addressof (this ->__get ()));
859
859
# endif
You can’t perform that action at this time.
0 commit comments