File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff 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 {
605606struct __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};
You can’t perform that action at this time.
0 commit comments