-
Type:
Bug
-
Resolution: Cannot Reproduce
-
Priority:
P3
-
None
-
Affects Version/s: repo-panama
-
Component/s: tools
For the following layout:
struct Foo {
unsigned char x;
};
Jextract source generation generates:
static final MemoryLayout Foo$struct$LAYOUT_ = MemoryLayout.ofStruct(
C_BOOL.withName("x")
).withName("Foo");
Note that this references the C_BOOL constant, instead of the C_CHAR constant.
struct Foo {
unsigned char x;
};
Jextract source generation generates:
static final MemoryLayout Foo$struct$LAYOUT_ = MemoryLayout.ofStruct(
C_BOOL.withName("x")
).withName("Foo");
Note that this references the C_BOOL constant, instead of the C_CHAR constant.