Janis Estelmann
Results
1
issues of
Janis Estelmann
Both ```python Pointer(ArrayOf(Pointer(POD(np.float32, "xxx")), 2)), Pointer(Pointer(ArrayOf(POD(np.float32, "yyy"), 2))), ``` result in ```c float **xxx[2]; float **yyy[2]; ``` The expected result is ```c float *(*xxx)[2]; float (**xxx)[2]; ```