mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-30 16:30:41 +00:00
([Coding -decodeArrayOfType:at:count:withName:]): Change the 3rd
argument type; pass the count directly, not as a pointer. The encoding and decoding of array's no longer records the array count; if necessary, you must do that yourself ahead of time. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@603 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
7ecfb3729f
commit
1dce17d034
2 changed files with 2 additions and 2 deletions
|
@ -108,7 +108,7 @@
|
|||
|
||||
- (void) decodeArrayOfType: (const char *)type
|
||||
at: (void *)d
|
||||
count: (unsigned *)c
|
||||
count: (unsigned)c
|
||||
withName: (const char **)name;
|
||||
|
||||
- (void) decodeObjectAt: (id*)anObjPtr
|
||||
|
|
|
@ -108,7 +108,7 @@
|
|||
|
||||
- (void) decodeArrayOfType: (const char *)type
|
||||
at: (void *)d
|
||||
count: (unsigned *)c
|
||||
count: (unsigned)c
|
||||
withName: (const char **)name;
|
||||
|
||||
- (void) decodeObjectAt: (id*)anObjPtr
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue