mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-23 00:41:02 +00:00
Fix release method signature to match NSObject
This commit is contained in:
parent
27c06a9209
commit
acde7b062a
2 changed files with 3 additions and 3 deletions
|
@ -164,7 +164,7 @@ For more detailed assistance, please report the error to bug-gnustep@gnu.org.\n\
|
|||
*************************************************************************/
|
||||
@interface _NSConcreteProcessInfo: NSProcessInfo
|
||||
- (id) autorelease;
|
||||
- (void) release;
|
||||
- (oneway void) release;
|
||||
- (id) retain;
|
||||
@end
|
||||
|
||||
|
@ -174,7 +174,7 @@ For more detailed assistance, please report the error to bug-gnustep@gnu.org.\n\
|
|||
return self;
|
||||
}
|
||||
|
||||
- (void) release
|
||||
- (oneway void) release
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
|
|
@ -941,7 +941,7 @@ again:
|
|||
return sizeof(GSPortItemHeader) + sizeof(GSPortMsgHeader);
|
||||
}
|
||||
|
||||
- (void) release
|
||||
- (oneway void) release
|
||||
{
|
||||
/* We lock the port table while checking, to prevent
|
||||
* another thread from grabbing this port while we are
|
||||
|
|
Loading…
Reference in a new issue