-
Type:
Bug
-
Resolution: Fixed
-
Priority:
P3
-
None
-
Affects Version/s: None
-
Component/s: tools
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.