From edd572703b9d8af383a0630a2e5964e2c3725fed Mon Sep 17 00:00:00 2001 From: gcasa Date: Tue, 13 Jan 2009 23:38:02 +0000 Subject: [PATCH] * Source/GSArray.m * Source/NSNotificationCenter.m: Quick fixes for two compiler errors introduced by previous change. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@27594 72102866-910b-0410-8b05-ffd578937521 --- ChangeLog | 6 ++++++ Source/GSArray.m | 1 + Source/NSNotificationCenter.m | 2 +- 3 files changed, 8 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 175c5fbd0..1c5d068be 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2009-01-13 18:35-EST Gregory John Casamento + + * Source/GSArray.m + * Source/NSNotificationCenter.m: Quick fixes for two compiler + errors introduced by previous change. + 2009-01-13 Richard Frith-Macdonald * Source/NSGarbageCollector.m: Mark the two unimplemented methods. diff --git a/Source/GSArray.m b/Source/GSArray.m index 6274abf2c..12b942164 100644 --- a/Source/GSArray.m +++ b/Source/GSArray.m @@ -51,6 +51,7 @@ static Class GSInlineArrayClass; #endif @class GSArray; +@class GSInlineArray; @interface GSArrayEnumerator : NSEnumerator { diff --git a/Source/NSNotificationCenter.m b/Source/NSNotificationCenter.m index 6ae28e02d..8a900e8e4 100644 --- a/Source/NSNotificationCenter.m +++ b/Source/NSNotificationCenter.m @@ -973,7 +973,7 @@ static NSNotificationCenter *default_center = nil; */ - (void) _postAndRelease: (NSNotification*)notification { - IF_NO_GC(GSGarbageCollector *collector = [NSGarbageCollector defaultCollector]) + // IF_NO_GC(GSGarbageCollector *collector = [NSGarbageCollector defaultCollector]) Observation *o; unsigned count; NSString *name = [notification name];