https://gcc.gnu.org/g:4b884f3d6335539447d32c6462cc4ef52e30e273

commit r15-9195-g4b884f3d6335539447d32c6462cc4ef52e30e273
Author: Jonathan Wakely <jwak...@redhat.com>
Date:   Thu Apr 3 14:15:51 2025 +0100

    libstdc++: Fix whitespace in std::basic_string::_M_construct<bool>
    
    libstdc++-v3/ChangeLog:
    
            * include/bits/basic_string.tcc: Fix whitespace.

Diff:
---
 libstdc++-v3/include/bits/basic_string.tcc | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/libstdc++-v3/include/bits/basic_string.tcc 
b/libstdc++-v3/include/bits/basic_string.tcc
index a5df7cb1f4bc..02230aca5d27 100644
--- a/libstdc++-v3/include/bits/basic_string.tcc
+++ b/libstdc++-v3/include/bits/basic_string.tcc
@@ -279,11 +279,11 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
   // Length of string constructed is easier to propagate inter-procedurally
   // than difference between iterators.
   template<typename _CharT, typename _Traits, typename _Alloc>
-     template<bool _Terminated>
+    template<bool _Terminated>
     _GLIBCXX20_CONSTEXPR 
     void
     basic_string<_CharT, _Traits, _Alloc>::
-    _M_construct(const _CharT *__str, size_type __n)
+    _M_construct(const _CharT* __str, size_type __n)
     {
       if (__n > size_type(_S_local_capacity))
        {

Reply via email to