mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-31 00:30:53 +00:00
([NSCountedSet -countForObject:]): Return 0.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@1166 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
3534bcc0de
commit
aee7ff0d91
1 changed files with 2 additions and 1 deletions
|
@ -1,5 +1,5 @@
|
||||||
/* NSCountedSet - CountedSet object
|
/* NSCountedSet - CountedSet object
|
||||||
Copyright (C) 1995 Free Software Foundation, Inc.
|
Copyright (C) 1995, 1996 Free Software Foundation, Inc.
|
||||||
|
|
||||||
Written by: R. Andrew McCallum <mccallum@gnu.ai.mit.edu>
|
Written by: R. Andrew McCallum <mccallum@gnu.ai.mit.edu>
|
||||||
Created: Sep 1995
|
Created: Sep 1995
|
||||||
|
@ -97,6 +97,7 @@ static Class NSCountedSet_concrete_class;
|
||||||
- (unsigned int) countForObject: anObject
|
- (unsigned int) countForObject: anObject
|
||||||
{
|
{
|
||||||
[self subclassResponsibility:_cmd];
|
[self subclassResponsibility:_cmd];
|
||||||
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
- copyWithZone: (NSZone*)z
|
- copyWithZone: (NSZone*)z
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue