Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
Signed-off-by: Dan Hoeflinger <[email protected]>
  • Loading branch information
danhoeflinger committed Dec 30, 2024
1 parent f7e8477 commit d5585fe
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion include/oneapi/dpl/pstl/omp/util.h
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,8 @@ struct __thread_enumerable_storage
template <typename... Args>
__thread_enumerable_storage(Args&&... __args) : __num_elements(0)
{
__construct_helper = std::make_unique<__construct_by_args<_StorageType, Args...>>(std::forward<Args>(__args)...);
__construct_helper =
std::make_unique<__construct_by_args<_StorageType, Args...>>(std::forward<Args>(__args)...);
_PSTL_PRAGMA(omp parallel)
_PSTL_PRAGMA(omp single) { __thread_specific_storage.resize(omp_get_num_threads()); }
}
Expand Down

0 comments on commit d5585fe

Please sign in to comment.