@@ -3506,10 +3506,10 @@ __parallel_set_union_op(__parallel_tag<_IsVector> __tag, _ExecutionPolicy&& __ex
35063506 }
35073507
35083508 auto __res_or = __result;
3509- __result += __offset;
3509+ __result += __offset;
35103510 __par_backend::__parallel_invoke (
35113511 __backend_tag{}, __exec,
3512- // do parallel copying of the non-overlapping prefix
3512+ // do parallel copying of the non-overlapping
35133513 [=, &__exec] {
35143514 if (__prefer_range1_copy)
35153515 __internal::__pattern_walk2_brick (__tag, __exec, __first1, __begin1, __res_or, __copy_range);
@@ -3521,16 +3521,15 @@ __parallel_set_union_op(__parallel_tag<_IsVector> __tag, _ExecutionPolicy&& __ex
35213521 {
35223522 __result = __internal::__parallel_set_op (
35233523 __tag, __exec, __begin1, __last1, __begin2, __last2, __result,
3524- [](_DifferenceType __n, _DifferenceType __m) { return __n + __m; }, __set_union_op, __comp,
3525- __proj1, __proj2);
3524+ [](_DifferenceType __n, _DifferenceType __m) { return __n + __m; }, __set_union_op, __comp, __proj1,
3525+ __proj2);
35263526 }
35273527 else
35283528 {
35293529 __result = __internal::__parallel_set_op (
35303530 __tag, __exec, __begin2, __last2, __begin1, __last1, __result,
35313531 [](_DifferenceType __n, _DifferenceType __m) { return __n + __m; },
3532- __swap_set_op<_SetUnionOp>{__set_union_op},
3533- __comp, __proj2, __proj1);
3532+ __swap_set_op<_SetUnionOp>{__set_union_op}, __comp, __proj2, __proj1);
35343533 }
35353534 });
35363535 return __result;
0 commit comments