From f12bae7d3eeaa2ce890d8f5dc9e996ccebebe23f Mon Sep 17 00:00:00 2001 From: Pietro Gagliardi Date: Sun, 6 Apr 2014 13:09:58 -0400 Subject: [PATCH] Wrote an update on the NSUInteger/NSInteger situation in bleh_darwin.m. --- bleh_darwin.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bleh_darwin.m b/bleh_darwin.m index f5f81db..8f77b84 100644 --- a/bleh_darwin.m +++ b/bleh_darwin.m @@ -62,7 +62,7 @@ void initBleh() } /* -NSUInteger is listed as being in ... which doesn't exist. Rather than relying on undocumented header file locations or explicitly typedef-ing NSUInteger to the (documented) unsigned long, I'll just place things here for maximum safety. I use uintptr_t as that should encompass every possible unsigned long. +NSUInteger is listed as being in ... which doesn't exist. Rather than relying on undocumented header file locations or explicitly typedef-ing NSUInteger to the (documented) unsigned long, Even better: it appears to actually be , and requires Objective-C (it declares NSString), so we don't have a choice but to just place things here. For maximum safety. I use uintptr_t as that should encompass every possible unsigned long. */ uintptr_t objc_msgSend_uintret_noargs(id obj, SEL sel)