[committed] libstdc++: Adjust indentation of new std::span constructor
Checks
Commit Message
libstdc++-v3/ChangeLog:
* include/std/span: Fix indentation.
---
Tested x86_64-linux. Pushed to trunk.
libstdc++-v3/include/std/span | 13 ++++++-------
1 file changed, 6 insertions(+), 7 deletions(-)
@@ -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<value_type> __il)
- requires (is_const_v<_Type>)
- : _M_ptr(__il.begin()), _M_extent(__il.size())
- {
- }
+ constexpr
+ explicit(extent != dynamic_extent)
+ span(initializer_list<value_type> __il)
+ requires (is_const_v<_Type>)
+ : _M_ptr(__il.begin()), _M_extent(__il.size())
+ { }
#pragma GCC diagnostic pop
#endif