Skip to content

Commit fbd197a

Browse files
committed
Try again
1 parent a5be216 commit fbd197a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

libcxx/include/__ranges/enumerate_view.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ class enumerate_view<_View>::__iterator {
149149
using value_type = tuple<difference_type, range_value_t<_Base>>;
150150

151151
private:
152-
using _LIBCPP_NODEBUG __reference_type = tuple<difference_type, range_reference_t<_Base>>;
152+
using __reference_type _LIBCPP_NODEBUG = tuple<difference_type, range_reference_t<_Base>>;
153153

154154
iterator_t<_Base> __current_ = iterator_t<_Base>();
155155
difference_type __pos_ = 0;
@@ -277,7 +277,7 @@ template <view _View>
277277
requires __range_with_movable_references<_View>
278278
template <bool _Const>
279279
class enumerate_view<_View>::__sentinel {
280-
using _LIBCPP_NODEBUG _Base = __maybe_const<_Const, _View>;
280+
using _Base _LIBCPP_NODEBUG = __maybe_const<_Const, _View>;
281281

282282
sentinel_t<_Base> __end_ = sentinel_t<_Base>();
283283

0 commit comments

Comments
 (0)