mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-23 09:04:13 +00:00
Removed unecessary casts
This commit is contained in:
parent
ea92a95c6a
commit
80b54d580d
2 changed files with 2 additions and 2 deletions
|
@ -100,7 +100,7 @@ static unsigned systemVersion = MAX_SUPPORTED_SYSTEM_VERSION;
|
|||
- (NSInteger) versionForClassName: (NSString*)className
|
||||
{
|
||||
[self subclassResponsibility: _cmd];
|
||||
return (NSInteger)NSNotFound;
|
||||
return NSNotFound;
|
||||
}
|
||||
|
||||
// Encoding Data
|
||||
|
|
|
@ -1683,7 +1683,7 @@ scalarSize(char type)
|
|||
info = [objDict objectForKey: className];
|
||||
if (info == nil)
|
||||
{
|
||||
return (NSInteger)NSNotFound;
|
||||
return NSNotFound;
|
||||
}
|
||||
return info->version;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue