Skip to content

Commit 1d21194

Browse files
committed
Try again
1 parent 12e9cbb commit 1d21194

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

libcxx/include/__ranges/enumerate_view.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ template <view _View>
126126
requires __range_with_movable_references<_View>
127127
template <bool _Const>
128128
class enumerate_view<_View>::__iterator {
129-
_LIBCPP_NODEBUG using _Base = __maybe_const<_Const, _View>;
129+
using _Base _LIBCPP_NODEBUG = __maybe_const<_Const, _View>;
130130

131131
static consteval auto __get_iterator_concept() {
132132
if constexpr (random_access_range<_Base>) {
@@ -149,7 +149,7 @@ class enumerate_view<_View>::__iterator {
149149
using value_type = tuple<difference_type, range_value_t<_Base>>;
150150

151151
private:
152-
_LIBCPP_NODEBUG using __reference_type = tuple<difference_type, range_reference_t<_Base>>;
152+
using _LIBCPP_NODEBUG __reference_type = 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-
_LIBCPP_NODEBUG using _Base = __maybe_const<_Const, _View>;
280+
using _LIBCPP_NODEBUG _Base = __maybe_const<_Const, _View>;
281281

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

0 commit comments

Comments
 (0)