jextract does not generate correct signature in doc comments for multidimensional arrays
File: t.h
int abc[2][2];
Generated javadoc snippet looks as follows:
{@snippet :
int [2] abc[2];
}
instead of the expected
{@snippet :
int abc[2][2];
}
File: t.h
int abc[2][2];
Generated javadoc snippet looks as follows:
{@snippet :
int [2] abc[2];
}
instead of the expected
{@snippet :
int abc[2][2];
}