From: Jonathan Wakely Date: Tue, 7 Jan 2025 09:23:32 +0000 (+0000) Subject: libstdc++: Adjust indentation of new std::span constructor X-Git-Tag: basepoints/gcc-16~2859 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=21afe12867ed9e13610043ac4d336dc248868bee;p=thirdparty%2Fgcc.git libstdc++: Adjust indentation of new std::span constructor libstdc++-v3/ChangeLog: * include/std/span: Fix indentation. --- diff --git a/libstdc++-v3/include/std/span b/libstdc++-v3/include/std/span index 4b40bd0f6558..247b942dc3b2 100644 --- a/libstdc++-v3/include/std/span +++ b/libstdc++-v3/include/std/span @@ -235,13 +235,12 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION #if __cpp_lib_span_initializer_list >= 202311L // >= C++26 #pragma GCC diagnostic push #pragma GCC diagnostic ignored "-Winit-list-lifetime" - constexpr - explicit(extent != dynamic_extent) - span(initializer_list __il) - requires (is_const_v<_Type>) - : _M_ptr(__il.begin()), _M_extent(__il.size()) - { - } + constexpr + explicit(extent != dynamic_extent) + span(initializer_list __il) + requires (is_const_v<_Type>) + : _M_ptr(__il.begin()), _M_extent(__il.size()) + { } #pragma GCC diagnostic pop #endif