From a4c9f5bd436dae1d99845f50da55bae733129f56 Mon Sep 17 00:00:00 2001 From: Matthias Andreas Benkard Date: Mon, 4 Aug 2008 16:20:18 +0200 Subject: Add fixnum-aware macros LRETAIN, LRELEASE, LDESTROY, LAUTORELEASE, LASSIGN_COPY, and LASSIGN. --- MLKEnvironment.m | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'MLKEnvironment.m') diff --git a/MLKEnvironment.m b/MLKEnvironment.m index 215d3dc..ddaadcc 100644 --- a/MLKEnvironment.m +++ b/MLKEnvironment.m @@ -39,7 +39,7 @@ { self = [super init]; _bindings = [[NSMutableDictionary alloc] initWithCapacity:10]; - ASSIGN (_parent, parent); + LASSIGN (_parent, parent); [self addValues:bindings]; return self; } @@ -193,8 +193,8 @@ -(void) dealloc { - RELEASE (_bindings); - RELEASE (_parent); + LRELEASE (_bindings); + LRELEASE (_parent); [super dealloc]; } @end -- cgit v1.2.3