Skip to content

Commit

Permalink
Include missing header in test header
Browse files Browse the repository at this point in the history
This seems to be required on Windows. Also cleaned up the whitespace.
  • Loading branch information
JamesWrigley committed Dec 22, 2023
1 parent 31876f0 commit 61f1c48
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions test/include/struct-mutual-ref.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#include <stdint.h>
#include <stdlib.h>
#include <stdbool.h>

Expand All @@ -7,8 +8,8 @@ struct mutualref {
struct buffer *buffer;

int n_dims;
int64_t ne[10];
size_t nb[10];
int64_t ne[10];
size_t nb[10];

int32_t op_params[10 / sizeof(int32_t)];

Expand All @@ -19,8 +20,8 @@ struct mutualref {

struct mutualref *view_src;
size_t view_offs;

void *data;

char padding[12];
};
};

0 comments on commit 61f1c48

Please sign in to comment.