mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-23 00:41:02 +00:00
revert accidental commit.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@34824 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
b7a7b40179
commit
77186600d2
1 changed files with 4 additions and 4 deletions
|
@ -1870,7 +1870,7 @@ failure:
|
|||
|
||||
- (void) encodeWithCoder: (NSCoder*)aCoder
|
||||
{
|
||||
unsigned length = [self length];
|
||||
NSUInteger length = [self length];
|
||||
void *bytes = [self mutableBytes];
|
||||
|
||||
if ([aCoder allowsKeyedCoding])
|
||||
|
@ -1881,7 +1881,7 @@ failure:
|
|||
}
|
||||
else
|
||||
{
|
||||
[aCoder encodeValueOfObjCType: @encode(unsigned)
|
||||
[aCoder encodeValueOfObjCType: @encode(NSUInteger)
|
||||
at: &length];
|
||||
if (length)
|
||||
{
|
||||
|
@ -1917,9 +1917,9 @@ failure:
|
|||
}
|
||||
else
|
||||
{
|
||||
unsigned l;
|
||||
NSUInteger l;
|
||||
|
||||
[aCoder decodeValueOfObjCType: @encode(unsigned) at: &l];
|
||||
[aCoder decodeValueOfObjCType: @encode(NSUInteger) at: &l];
|
||||
if (l)
|
||||
{
|
||||
void *b;
|
||||
|
|
Loading…
Reference in a new issue