Skip to content

Commit ff9516a

Browse files
fix
1 parent 1a2643e commit ff9516a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libcxx/include/__ranges/concat_view.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -292,7 +292,7 @@ class concat_view<_Views...>::__iterator : public __concat_view_iterator_categor
292292
return [&__func, this]<std::size_t _Is>(this auto&& __self) {
293293
if (_Is == __it_.index()) {
294294
return __func.template operator()<_Is>();
295-
} else if constexpr (_Is + 1 < sizeof...(_Views)) {
295+
} if constexpr (_Is + 1 < sizeof...(_Views)) {
296296
return __self.template operator()<_Is + 1>();
297297
}
298298
__builtin_unreachable();

0 commit comments

Comments
 (0)