I wonder if it’s because SMatrix{8, 2, Cchar}
isn’t concrete. This catches me a lot. There’s a fourth type parameter that needs to be set to the total number of elements, in this case 16. Try making the type of that field SMatrix{8, 2, Cchar, 16}
.
3 Likes