[committed] libstdc++: Adjust indentation of new std::span constructor

Message ID 20250108130150.262898-1-jwakely@redhat.com
State New
Headers
Series [committed] libstdc++: Adjust indentation of new std::span constructor |

Checks

Context Check Description
linaro-tcwg-bot/tcwg_gcc_build--master-aarch64 fail Patch failed to apply
linaro-tcwg-bot/tcwg_gcc_build--master-arm fail Patch failed to apply

Commit Message

Jonathan Wakely Jan. 8, 2025, 1:01 p.m. UTC
  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(-)
  

Patch

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<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