Skip to content

Commit dc2dbbf

Browse files
clang format
1 parent 60a09f6 commit dc2dbbf

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

libcxx/include/__ranges/concat_view.h

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -317,7 +317,8 @@ class concat_view<_Views...>::iterator {
317317
}
318318

319319
template <size_t... Is, typename Func>
320-
_LIBCPP_HIDE_FROM_ABI constexpr void apply_fn_with_const_index(size_t index, Func&& func, std::index_sequence<Is...>) {
320+
_LIBCPP_HIDE_FROM_ABI constexpr void
321+
apply_fn_with_const_index(size_t index, Func&& func, std::index_sequence<Is...>) {
321322
((index == Is ? (func(std::integral_constant<size_t, Is>{}), 0) : 0), ...);
322323
}
323324

@@ -605,7 +606,7 @@ namespace __concat {
605606
struct __fn {
606607
template <class... _Views>
607608
[[nodiscard]] _LIBCPP_HIDE_FROM_ABI constexpr auto operator()(_Views... views) const
608-
noexcept(noexcept(concat_view(std::forward<_Views>(views)...))) -> decltype(concat_view(std::forward<_Views>(views)...)) {
609+
noexcept(concat_view(std::forward<_Views>(views)...)) -> decltype(concat_view(std::forward<_Views>(views)...)) {
609610
return concat_view(std::forward<_Views>(views)...);
610611
}
611612
};

0 commit comments

Comments
 (0)