mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-31 16:50:58 +00:00
Fix for apple-apple-apple
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@26284 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
4cf552b94b
commit
990202ddc0
2 changed files with 7 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2008-03-12 Richard Frith-Macdonald <rfm@gnu.org>
|
||||||
|
|
||||||
|
* Source/Additions/GSInsensitiveDictionary.m:
|
||||||
|
Don't do gnustep specific debug if building apple-apple-apple
|
||||||
|
|
||||||
2008-03-11 Adam Fedor <fedor@gnu.org>
|
2008-03-11 Adam Fedor <fedor@gnu.org>
|
||||||
|
|
||||||
* Version 1.15.3
|
* Version 1.15.3
|
||||||
|
|
|
@ -373,11 +373,11 @@ static SEL objSel;
|
||||||
|
|
||||||
- (id) makeImmutableCopyOnFail: (BOOL)force
|
- (id) makeImmutableCopyOnFail: (BOOL)force
|
||||||
{
|
{
|
||||||
#ifndef NDEBUG
|
#if !defined(NDEBUG) && defined(GNUSTEP_BASE_LIBRARY)
|
||||||
GSDebugAllocationRemove(isa, self);
|
GSDebugAllocationRemove(isa, self);
|
||||||
#endif
|
#endif
|
||||||
isa = [_GSInsensitiveDictionary class];
|
isa = [_GSInsensitiveDictionary class];
|
||||||
#ifndef NDEBUG
|
#if !defined(NDEBUG) && defined(GNUSTEP_BASE_LIBRARY)
|
||||||
GSDebugAllocationAdd(isa, self);
|
GSDebugAllocationAdd(isa, self);
|
||||||
#endif
|
#endif
|
||||||
return self;
|
return self;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue