[gcc(refs/users/ppalka/heads/libstdcxx-ranges-algos-nieblification)] Fix indentation of uninitialized_copy_n

Patrick Palka ppalka@gcc.gnu.org
Thu Feb 13 20:56:00 GMT 2020


https://gcc.gnu.org/g:7b35e871667800b1f3bfe2ce70293e12763c3f0f

commit 7b35e871667800b1f3bfe2ce70293e12763c3f0f
Author: Patrick Palka <ppalka@redhat.com>
Date:   Thu Feb 13 12:17:01 2020 -0500

    Fix indentation of uninitialized_copy_n

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

diff --git a/libstdc++-v3/include/bits/ranges_uninitialized.h b/libstdc++-v3/include/bits/ranges_uninitialized.h
index 5ff2eaa..3e4c3ea 100644
--- a/libstdc++-v3/include/bits/ranges_uninitialized.h
+++ b/libstdc++-v3/include/bits/ranges_uninitialized.h
@@ -270,8 +270,8 @@ namespace ranges
   template<typename _Iter, typename _Out>
     using uninitialized_copy_n_result = uninitialized_copy_result<_Iter, _Out>;
 
-    template<input_iterator _Iter, __detail::__nothrow_forward_iterator _Out,
-      __detail::__nothrow_sentinel<_Out> _Sent>
+  template<input_iterator _Iter, __detail::__nothrow_forward_iterator _Out,
+	   __detail::__nothrow_sentinel<_Out> _Sent>
     requires constructible_from<iter_value_t<_Out>, iter_reference_t<_Iter>>
     uninitialized_copy_n_result<_Iter, _Out>
     uninitialized_copy_n(_Iter __ifirst, iter_difference_t<_Iter> __n,



More information about the Libstdc++-cvs mailing list