mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-23 09:04:13 +00:00
GCC does not support ivars in implementation block
This commit is contained in:
parent
c76d052192
commit
71c5bb8b09
1 changed files with 3 additions and 3 deletions
|
@ -103,9 +103,6 @@ return [NSString stringWithFormat: @"%@ %@ %@", _firstName, _middleName, _lastNa
|
|||
@end
|
||||
|
||||
@interface Observer : NSObject
|
||||
@end
|
||||
|
||||
@implementation Observer
|
||||
{
|
||||
@public
|
||||
NSString *lastKeyPath;
|
||||
|
@ -113,6 +110,9 @@ return [NSString stringWithFormat: @"%@ %@ %@", _firstName, _middleName, _lastNa
|
|||
NSDictionary *lastChange;
|
||||
int notificationCount;
|
||||
}
|
||||
@end
|
||||
|
||||
@implementation Observer
|
||||
|
||||
- (void) resetValues
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue