* fixed result of NSObject(Protocol).hash: cuint -> NSUInteger (fixes 64 bit

compilation of cocoain)

git-svn-id: trunk@16692 -
This commit is contained in:
Jonas Maebe 2011-01-03 12:14:12 +00:00
parent f5d9ab3038
commit 6fe0084caa

View File

@ -83,7 +83,7 @@ type
NSObjectProtocol = objcprotocol external name 'NSObject'
function isEqual(obj: id): boolean; message 'isEqual:';
function hash: cuint; message 'hash';
function hash: NSUInteger; message 'hash';
function superclass: pobjc_class; message 'superclass';
function _class: pobjc_class; message 'class';
@ -122,7 +122,7 @@ type
definition by the compiler, but you can still repeat them if you want }
function isEqual(obj: id): boolean;
function isEqual_(obj: id): boolean; message 'isEqual:';
function hash: cuint;
function hash: NSUInteger;
function superclass: pobjc_class;
function _class: pobjc_class;