more updates

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@38803 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
rfm 2015-07-16 08:44:15 +00:00
parent 5c53c77757
commit 21636b06d9
19 changed files with 138 additions and 119 deletions

View file

@ -2619,12 +2619,12 @@ GSPrivateMemorySize(NSObject *self, NSHashTable *exclude)
return 0;
}
@implementation NSObject (MemorySize)
+ (NSUInteger) sizeInBytes: (NSHashTable*)exclude
@implementation NSObject (MemoryFootprint)
+ (NSUInteger) sizeInBytesExcluding: (NSHashTable*)exclude
{
return 0;
}
- (NSUInteger) sizeInBytes: (NSHashTable*)exclude
- (NSUInteger) sizeInBytesExcluding: (NSHashTable*)exclude
{
return GSPrivateMemorySize(self, exclude);
}