mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-12 17:11:12 +00:00
Use NSMutableArraya in place of Array
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@6710 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
dbdca987a2
commit
bcfb76565d
1 changed files with 3 additions and 3 deletions
|
@ -135,7 +135,7 @@ static id dummyObject;
|
||||||
{
|
{
|
||||||
if (!xref_2_object)
|
if (!xref_2_object)
|
||||||
{
|
{
|
||||||
xref_2_object = [NSArray new];
|
xref_2_object = [NSMutableArray new];
|
||||||
/* Append an object so our xref numbers are in sync with the
|
/* Append an object so our xref numbers are in sync with the
|
||||||
Encoders, which start at 1. */
|
Encoders, which start at 1. */
|
||||||
[xref_2_object addObject: dummyObject];
|
[xref_2_object addObject: dummyObject];
|
||||||
|
@ -169,7 +169,7 @@ static id dummyObject;
|
||||||
- (void) _coderPushRootObjectTable
|
- (void) _coderPushRootObjectTable
|
||||||
{
|
{
|
||||||
if (!xref_2_object_root)
|
if (!xref_2_object_root)
|
||||||
xref_2_object_root = [NSArray new];
|
xref_2_object_root = [NSMutableArray new];
|
||||||
}
|
}
|
||||||
|
|
||||||
- (void) _coderPopRootObjectTable
|
- (void) _coderPopRootObjectTable
|
||||||
|
@ -186,7 +186,7 @@ static id dummyObject;
|
||||||
{
|
{
|
||||||
if (!xref_2_object_root)
|
if (!xref_2_object_root)
|
||||||
{
|
{
|
||||||
xref_2_object_root = [NSArray new];
|
xref_2_object_root = [NSMutableArray new];
|
||||||
/* Append an object so our xref numbers are in sync with the
|
/* Append an object so our xref numbers are in sync with the
|
||||||
Encoders, which start at 1. */
|
Encoders, which start at 1. */
|
||||||
[xref_2_object_root addObject: dummyObject];
|
[xref_2_object_root addObject: dummyObject];
|
||||||
|
|
Loading…
Reference in a new issue