-
Bug
-
Resolution: Fixed
-
P3
-
None
-
None
Consider this C code:
struct A { int x; };
struct A foo(int allocator);
Jextract generates the following binding:
public static MemorySegment foo(SegmentAllocator allocator, int allocator) { ... }
Note the duplicate "allocator" parameter name.
struct A { int x; };
struct A foo(int allocator);
Jextract generates the following binding:
public static MemorySegment foo(SegmentAllocator allocator, int allocator) { ... }
Note the duplicate "allocator" parameter name.