From 0b4e1ff24600147adb3e0de8069cb8917c9d13ea Mon Sep 17 00:00:00 2001 From: Pietro Gagliardi Date: Sat, 1 Mar 2014 16:01:19 -0500 Subject: [PATCH] Reworded a comment in bleh_darwin.m: the docs don't imply the wrong information, they outright say the wrong information. --- bleh_darwin.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bleh_darwin.m b/bleh_darwin.m index d8e2bc5..f513d4f 100644 --- a/bleh_darwin.m +++ b/bleh_darwin.m @@ -31,7 +31,7 @@ I use int64_t for maximum safety, as my coordinates are stored as Go ints and Go */ /* -This is not documented in the docs, but is in various places on apple.com. In fact, the docs are actually WRONG: they imply you pass a pointer to the structure as the first argument to objc_msgSend_stret! And there might be some cases where we can't use stret because the struct is small enough... we'll see. (TODO) +This is not documented in the docs, but is in various places on apple.com. In fact, the docs are actually WRONG: they say you pass a pointer to the structure as the first argument to objc_msgSend_stret()! And there might be some cases where we can't use stret because the struct is small enough... we'll see. (TODO) */ static NSRect (*objc_msgSend_stret_rect)(id, SEL, ...) = (NSRect (*)(id, SEL, ...)) objc_msgSend_stret;