mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-22 16:33:29 +00:00
Avoid compiler warning
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@17385 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
052ba25d0e
commit
042e827284
1 changed files with 3 additions and 1 deletions
|
@ -207,8 +207,10 @@ GSBuildStrings()
|
|||
* Ensure that NSString is initialized ... because we are called
|
||||
* from [NSObject +initialize] which might be executing as a
|
||||
* result of a call to [NSString +initialize] !
|
||||
* Use performSelector: to avoid compiler warning about clash of
|
||||
* return value types in two different versions of initialize.
|
||||
*/
|
||||
[SClass initialize];
|
||||
[SClass performSelector: @selector(initialize)];
|
||||
|
||||
InPortAcceptedClientNotification
|
||||
= [[SClass alloc] initWithCString:
|
||||
|
|
Loading…
Reference in a new issue