We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1a2643e commit ff9516aCopy full SHA for ff9516a
libcxx/include/__ranges/concat_view.h
@@ -292,7 +292,7 @@ class concat_view<_Views...>::__iterator : public __concat_view_iterator_categor
292
return [&__func, this]<std::size_t _Is>(this auto&& __self) {
293
if (_Is == __it_.index()) {
294
return __func.template operator()<_Is>();
295
- } else if constexpr (_Is + 1 < sizeof...(_Views)) {
+ } if constexpr (_Is + 1 < sizeof...(_Views)) {
296
return __self.template operator()<_Is + 1>();
297
}
298
__builtin_unreachable();
0 commit comments