From d5585feb21806c1f952e3503583c41f7b32ba164 Mon Sep 17 00:00:00 2001 From: Dan Hoeflinger Date: Mon, 30 Dec 2024 17:10:28 -0500 Subject: [PATCH] formatting Signed-off-by: Dan Hoeflinger --- include/oneapi/dpl/pstl/omp/util.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/oneapi/dpl/pstl/omp/util.h b/include/oneapi/dpl/pstl/omp/util.h index 28295a9533..af04983e83 100644 --- a/include/oneapi/dpl/pstl/omp/util.h +++ b/include/oneapi/dpl/pstl/omp/util.h @@ -187,7 +187,8 @@ struct __thread_enumerable_storage template __thread_enumerable_storage(Args&&... __args) : __num_elements(0) { - __construct_helper = std::make_unique<__construct_by_args<_StorageType, Args...>>(std::forward(__args)...); + __construct_helper = + std::make_unique<__construct_by_args<_StorageType, Args...>>(std::forward(__args)...); _PSTL_PRAGMA(omp parallel) _PSTL_PRAGMA(omp single) { __thread_specific_storage.resize(omp_get_num_threads()); } }