Skip to content

Commit 7dd5de4

Browse files
committed
Remove unnecessary statics.
1 parent 55e96ec commit 7dd5de4

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

tests/check_array.c

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,12 @@ START_TEST(test_take1_ok) {
2121
GpuArray v;
2222
GpuArray vidx;
2323
GpuArray vres;
24-
static const uint32_t data[24] = { 0, 1, 2, 3, 4, 5,
25-
6, 7, 8, 9, 10, 11,
26-
12, 13, 14, 15, 16, 17,
27-
18, 19, 20, 21, 22, 23};
24+
const uint32_t data[24] = { 0, 1, 2, 3, 4, 5,
25+
6, 7, 8, 9, 10, 11,
26+
12, 13, 14, 15, 16, 17,
27+
18, 19, 20, 21, 22, 23};
2828
uint32_t buf[12 * 24];
29-
static const size_t data_dims[1] = {24};
29+
const size_t data_dims[1] = {24};
3030
ssize_t indexes[12];
3131
size_t dims[3];
3232

0 commit comments

Comments
 (0)