I have been playing a bit with NSInvocation and the objc_msgSend functions and this came to light.
#ifdef __clang__
// see http://llvm.org/bugs/show_bug.cgi?id=9254
@throw @"NSInvocation: current implementation of struct returning invocation is not supported by Clang.";
Variable length struct returns won't be supported by clang, ever. We have to find another way to handle stret. I don't see this error being thrown so maybe it is not a big deal - but should get fixed at some point.
I have been playing a bit with NSInvocation and the objc_msgSend functions and this came to light.
Variable length struct returns won't be supported by clang, ever. We have to find another way to handle stret. I don't see this error being thrown so maybe it is not a big deal - but should get fixed at some point.