mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-31 08:41:03 +00:00
Fixes for 64bit systems .. mostly cosmetic avoidance of compiler warnings.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@22282 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
afd15b7592
commit
f57ca76cba
19 changed files with 105 additions and 62 deletions
|
@ -699,7 +699,7 @@ enum proxyLocation
|
|||
* (implemented in NSObject.m) to examine the protocol contents
|
||||
* without sending any ObjectiveC message to it.
|
||||
*/
|
||||
if ((int)GSObjCClass(_protocol) == 0x2)
|
||||
if ((uintptr_t)GSObjCClass(_protocol) == 0x2)
|
||||
{
|
||||
extern struct objc_method_description*
|
||||
GSDescriptionForInstanceMethod();
|
||||
|
@ -711,7 +711,7 @@ enum proxyLocation
|
|||
}
|
||||
if (mth == 0)
|
||||
{
|
||||
if ((int)GSObjCClass(_protocol) == 0x2)
|
||||
if ((uintptr_t)GSObjCClass(_protocol) == 0x2)
|
||||
{
|
||||
extern struct objc_method_description*
|
||||
GSDescriptionForClassMethod();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue