Closed charlieMonroe closed 7 years ago
iSwift doesn't recognize size_t as a type:
size_t
struct my_struct X; size_t length = sizeof(X);
Swift uses Int in place of size_t - see e.g. malloc.
Int
malloc
Super-delayed - I know :) - but...
Fixed as of the upcoming 3.0.
iSwift doesn't recognize
size_t
as a type:struct my_struct X; size_t length = sizeof(X);
Swift uses
Int
in place ofsize_t
- see e.g.malloc
.