Skip to content

Commit 20aa6f6

Browse files
Remove unnecessary comments in test
Signed-off-by: Elizabeth Andrews <[email protected]>
1 parent ac3e69a commit 20aa6f6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

clang/test/SemaSYCL/built-in-type-kernel-arg.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ __attribute__((sycl_kernel)) void kernel(const Func &kernelFunc) {
1212

1313
struct test_struct {
1414
int data;
15-
int *ptr; // Unused pointer in struct
16-
int *ptr_array1[2]; // Unused array of pointers in struct
17-
int *ptr_array2[2][3]; // Unused array of pointers in struct
15+
int *ptr;
16+
int *ptr_array1[2];
17+
int *ptr_array2[2][3];
1818
};
1919

2020
void test(const int some_const) {

0 commit comments

Comments
 (0)