I'm developing an app in a language other than Objective-C and I came across newBoxWithDimensions
. It uses the vector_float3
type which comes from the SIMD API.
I can not encode this function because of the vector_float3
type.
I've found Why can't gcc or clang properly @encode SIMD vector types?; the problem here is when @encode
does not encode the SIMD types, then it can not create a proper form for those functions that use SIMD types and then the message sending verification fails. How can I bypass this encoding problem in message sending verification?