Skip to content

Commit c230f3c

Browse files
authored
[SYCL] Fix CI failure (#5434)
Fix build issues introduced by #5259
1 parent fc0d28a commit c230f3c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

xpti/include/xpti/xpti_data_types.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -523,9 +523,9 @@ struct offload_buffer_data_t {
523523
/// A pointer to host memory offload object.
524524
uintptr_t host_object_handle = 0;
525525
/// A string representing the type of buffer element.
526-
const char *element_type;
526+
const char *element_type = nullptr;
527527
/// Buffer element size in bytes
528-
uint32_t element_size;
528+
uint32_t element_size = 0;
529529
/// Buffer dimensions number.
530530
uint32_t dim = 0;
531531
/// Buffer size for each dimension.

0 commit comments

Comments
 (0)