Skip to content

Commit

Permalink
[SYCL] minor uninitialized value (#14403)
Browse files Browse the repository at this point in the history
uninitialized value causing complaint from c.v.
  • Loading branch information
cperkinsintel authored Jul 3, 2024
1 parent 2d2c13a commit 5447301
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sycl/source/detail/event_impl.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -381,7 +381,7 @@ class event_impl {
// If this event represents a submission to a
// sycl::detail::pi::PiExtCommandBuffer the sync point for that submission is
// stored here.
sycl::detail::pi::PiExtSyncPoint MSyncPoint;
sycl::detail::pi::PiExtSyncPoint MSyncPoint = 0;

// If this event represents a submission to a
// sycl::detail::pi::PiExtCommandBuffer the command-buffer command
Expand Down

0 comments on commit 5447301

Please sign in to comment.