[pstl] r349814 - [NFC][pstl] Re-run Clang-format on the whole repository

Louis Dionne ldionne at apple.com
Thu Dec 20 12:28:56 PST 2018


Author: ldionne
Date: Thu Dec 20 12:28:56 2018
New Revision: 349814

URL: http://llvm.org/viewvc/llvm-project?rev=349814&view=rev
Log:
[NFC][pstl] Re-run Clang-format on the whole repository

Modified:
    pstl/trunk/include/pstl/internal/glue_algorithm_impl.h

Modified: pstl/trunk/include/pstl/internal/glue_algorithm_impl.h
URL: http://llvm.org/viewvc/llvm-project/pstl/trunk/include/pstl/internal/glue_algorithm_impl.h?rev=349814&r1=349813&r2=349814&view=diff
==============================================================================
--- pstl/trunk/include/pstl/internal/glue_algorithm_impl.h (original)
+++ pstl/trunk/include/pstl/internal/glue_algorithm_impl.h Thu Dec 20 12:28:56 2018
@@ -179,7 +179,7 @@ adjacent_find(_ExecutionPolicy&& __exec,
 
 template <class _ExecutionPolicy, class _ForwardIterator, class _Tp>
 __pstl::internal::enable_if_execution_policy<_ExecutionPolicy,
-                                           typename iterator_traits<_ForwardIterator>::difference_type>
+                                             typename iterator_traits<_ForwardIterator>::difference_type>
 count(_ExecutionPolicy&& __exec, _ForwardIterator __first, _ForwardIterator __last, const _Tp& __value)
 {
     typedef typename iterator_traits<_ForwardIterator>::value_type _ValueType;
@@ -192,7 +192,7 @@ count(_ExecutionPolicy&& __exec, _Forwar
 
 template <class _ExecutionPolicy, class _ForwardIterator, class _Predicate>
 __pstl::internal::enable_if_execution_policy<_ExecutionPolicy,
-                                           typename iterator_traits<_ForwardIterator>::difference_type>
+                                             typename iterator_traits<_ForwardIterator>::difference_type>
 count_if(_ExecutionPolicy&& __exec, _ForwardIterator __first, _ForwardIterator __last, _Predicate __pred)
 {
     using namespace __pstl;




More information about the libcxx-commits mailing list