Skip to content

Commit 322d361

Browse files
fix warnings
Signed-off-by: Tikhomirova, Kseniya <[email protected]>
1 parent d96f6db commit 322d361

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

sycl/source/detail/graph_impl.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1989,8 +1989,8 @@ void dynamic_command_group_impl::finalizeCGFList(
19891989
// shared_ptr<detail::CGExecKernel> to store
19901990
sycl::detail::CG *RawCGPtr = Handler.impl->MGraphNodeCG.release();
19911991
auto RawCGExecPtr = static_cast<sycl::detail::CGExecKernel *>(RawCGPtr);
1992-
auto CGExecSP = std::shared_ptr<sycl::detail::CGExecKernel>(RawCGExecPtr);
1993-
MKernels.push_back(CGExecSP);
1992+
MKernels.push_back(
1993+
std::shared_ptr<sycl::detail::CGExecKernel>(RawCGExecPtr));
19941994

19951995
// Track dynamic_parameter usage in command-list
19961996
auto &DynamicParams = Handler.impl->MDynamicParameters;

0 commit comments

Comments
 (0)