Apparently clang 3.2 had the same bug as 3.1...

main
theraven 13 years ago
parent 3fbdbe4d02
commit 7218882f7e

@ -40,7 +40,7 @@ id objc_msgSend_stret(id self, SEL _cmd, ...);
// There is a bug in older versions of clang that incorrectly declares the // There is a bug in older versions of clang that incorrectly declares the
// signature of this function as a builtin. // signature of this function as a builtin.
# ifdef __clang__ # ifdef __clang__
# if (__clang_major__ > 3) || ((__clang_major__ == 3) && __clang_minor__ >= 2) # if (__clang_major__ > 3) || ((__clang_major__ == 3) && __clang_minor__ >= 3)
void objc_msgSend_stret(id self, SEL _cmd, ...); void objc_msgSend_stret(id self, SEL _cmd, ...);
# else # else
id objc_msgSend_stret(id self, SEL _cmd, ...); id objc_msgSend_stret(id self, SEL _cmd, ...);

Loading…
Cancel
Save