- 
    Bug 
- 
    Resolution: Cannot Reproduce
- 
     P3 P3
- 
    None
- 
    repo-panama
                    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.