From 7218882f7ed919bce2a4215ba512f2b469afc3bd Mon Sep 17 00:00:00 2001 From: theraven Date: Wed, 30 Jan 2013 18:48:34 +0000 Subject: [PATCH] Apparently clang 3.2 had the same bug as 3.1... --- objc/message.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/objc/message.h b/objc/message.h index d99ad90..c2bef7c 100644 --- a/objc/message.h +++ b/objc/message.h @@ -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 // signature of this function as a builtin. # 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, ...); # else id objc_msgSend_stret(id self, SEL _cmd, ...);